##// END OF EJS Templates
Changes to lfrsge...
Changes to lfrsge Minor changes to the rmap plugin

File last commit:

r58:6bfd3f59df14 default
r58:6bfd3f59df14 default
Show More
wfpacket.h
27 lines | 422 B | text/x-c | CLexer
#ifndef WFPACKET_H
#define WFPACKET_H
#include <QObject>
#include "fsw_params.h"
class WFPacket : public QObject
{
Q_OBJECT
public:
explicit WFPacket(QObject *parent = 0, unsigned int nbData = 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