##// END OF EJS Templates
Sync
Sync

File last commit:

r69:d8815b251eb0 default
r70:a73c97699c81 default
Show More
wfplot.h
26 lines | 500 B | text/x-c | CLexer
#ifndef WFPLOT_H
#define WFPLOT_H
#include <QtWidgets/QWidget>
#include <QtWidgets/QVBoxLayout>
#include <lppmonplot.h>
class WFPlot : public QWidget
{
Q_OBJECT
public:
explicit WFPlot(QWidget *parent = 0, unsigned int xmax = 0, unsigned int ymax = 0);
void displayOnPlot(short *data, unsigned int size);
void displayOnPlotFloat(float *data, unsigned int size);
LppMonPlot *customPlot;
QVBoxLayout *mainLayout;
signals:
public slots:
};
#endif // WFPLOT_H