##// 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
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;
timecode generation added to the rmapplugin:...
r62 unsigned int coarseTime;
unsigned int fineTime;
new files added for the waveform display features...
r20 short *wf_v;
short *wf_e1;
short *wf_e2;
short *wf_b1;
short *wf_b2;
short *wf_b3;
signals:
public slots:
};
#endif // WFPACKET_H