##// END OF EJS Templates
gselesia changed to process CWF_F3 light waveforms...
gselesia changed to process CWF_F3 light waveforms parameterdump reorganized

File last commit:

r45:bff3fdf42776 default
r52:061b27b067a0 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