##// END OF EJS Templates
Minor update in project gse_lesia
Minor update in project gse_lesia

File last commit:

r69:d8815b251eb0 default
r72:27e89cd58c8b default
Show More
wfpacket.h
29 lines | 478 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;
unsigned int coarseTime;
unsigned int fineTime;
short *wf_v;
short *wf_e1;
short *wf_e2;
short *wf_b1;
short *wf_b2;
short *wf_b3;
signals:
public slots:
};
#endif // WFPACKET_H