##// END OF EJS Templates
Sync
Sync

File last commit:

r58:6bfd3f59df14 default
r59:154b9d6ee0fc default
Show More
wfpacket.h
27 lines | 422 B | text/x-c | CLexer
new files added for the waveform display features...
r20 #ifndef WFPACKET_H
#define WFPACKET_H
#include <QObject>
Changes to lfrsge...
r58 #include "fsw_params.h"
new files added for the waveform display features...
r20
class WFPacket : public QObject
{
Q_OBJECT
public:
Changes to lfrsge...
r58 explicit WFPacket(QObject *parent = 0, unsigned int nbData = 0);
new files added for the waveform display features...
r20 ~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