##// END OF EJS Templates
timecode generation added to the rmapplugin:...
timecode generation added to the rmapplugin: RMAPPlugin0.sendOneTimecode() RMAPPlugin0.sendTimecodePeriodically()

File last commit:

r62:8490a8b44e9a default
r62:8490a8b44e9a 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