##// END OF EJS Templates
Progress bar added to the plugin
Progress bar added to the plugin

File last commit:

r20:eedc59c3c383 default
r57:71cb087f0080 default
Show More
wfpacket.h
27 lines | 393 B | text/x-c | CLexer
#ifndef WFPACKET_H
#define WFPACKET_H
#include <QObject>
#include <params.h>
class WFPacket : public QObject
{
Q_OBJECT
public:
explicit WFPacket(QObject *parent = 0);
~WFPacket();
unsigned int nbSamples;
short *wf_v;
short *wf_e1;
short *wf_e2;
short *wf_b1;
short *wf_b2;
short *wf_b3;
signals:
public slots:
};
#endif // WFPACKET_H