##// END OF EJS Templates
Waveform display features...
Waveform display features Statistics display Updates of the ICD taken into account

File last commit:

r20:eedc59c3c383 default
r21:b405108d1fe4 default
Show More
wfpage.h
31 lines | 476 B | text/x-c | CLexer
new files added for the waveform display features...
r20 #ifndef WFPAGE_H
#define WFPAGE_H
#include <QWidget>
#include <wfplot.h>
#include <params.h>
class WFPage : public QWidget
{
Q_OBJECT
public:
explicit WFPage(QWidget *parent = 0);
WFPlot *wfPlot_v;
WFPlot *wfPlot_e1;
WFPlot *wfPlot_e2;
WFPlot *wfPlot_b1;
WFPlot *wfPlot_b2;
WFPlot *wfPlot_b3;
QGridLayout *mainLayout;
void displayOnPlot(short *data, unsigned char num);
signals:
public slots:
};
#endif // WFPAGE_H