mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-06 17:46:07 +01:00
24 lines
423 B
C
24 lines
423 B
C
|
#ifndef INPUTCHANNELFORM_H
|
||
|
#define INPUTCHANNELFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "configinputwidget.h"
|
||
|
namespace Ui {
|
||
|
class inputChannelForm;
|
||
|
}
|
||
|
|
||
|
class inputChannelForm : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit inputChannelForm(QWidget *parent = 0,bool showlegend=false);
|
||
|
~inputChannelForm();
|
||
|
friend class ConfigInputWidget;
|
||
|
|
||
|
private:
|
||
|
Ui::inputChannelForm *ui;
|
||
|
};
|
||
|
|
||
|
#endif // INPUTCHANNELFORM_H
|