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

File last commit:

r21:b405108d1fe4 default
r21:b405108d1fe4 default
Show More
wfplot.h
26 lines | 393 B | text/x-c | CLexer
new files added for the waveform display features...
r20 #ifndef WFPLOT_H
#define WFPLOT_H
#include <QWidget>
#include <QVBoxLayout>
#include <params.h>
Waveform display features...
r21 #include <lppmonplot.h>
new files added for the waveform display features...
r20
class WFPlot : public QWidget
{
Q_OBJECT
public:
explicit WFPlot(QWidget *parent = 0);
void displayOnPlot(short *data, unsigned int size);
Waveform display features...
r21
LppMonPlot *customPlot;
new files added for the waveform display features...
r20 QVBoxLayout *mainLayout;
signals:
public slots:
};
#endif // WFPLOT_H