| 1234567891011121314151617181920212223242526272829 |
- #ifndef CHANNEL_H
- #define CHANNEL_H
- #include <QWidget>
- #include "ui_channel.h"
- #include "settings.h"
- #include "qcustomplot.h"
- class Channel : public QWidget
- {
- Q_OBJECT
- private:
- int _channel;
- ChannelSettings& _channelSettings;
- QCustomPlot* _curvePlot;
- public:
- Channel(int channel, ChannelSettings& channelSettings, QWidget* parent = 0);
- ~Channel();
- private:
- Ui::channel ui;
- public:
- void update();
- };
- #endif // CHANNEL_H
|