##// END OF EJS Templates
Sync
Sync

File last commit:

r71:ac87a731be3a default
r71:ac87a731be3a default
Show More
wfplot.h
26 lines | 480 B | text/x-c | CLexer
#ifndef WFPLOT_H
#define WFPLOT_H
#include <QWidget>
#include <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