##// END OF EJS Templates
QSettings used in lfrsgse to store parameters
QSettings used in lfrsgse to store parameters

File last commit:

r23:23c09fe5a8b6 default
r33:dcb695867a39 default
Show More
wfpage.h
31 lines | 476 B | text/x-c | CLexer
#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