##// 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.cpp
24 lines | 504 B | text/x-c | CppLexer
new files added for the waveform display features...
r20 #include "wfpacket.h"
Changes to lfrsge...
r58 WFPacket::WFPacket(QObject *parent, unsigned int nbData) :
new files added for the waveform display features...
r20 QObject(parent)
{
Changes to lfrsge...
r58 this->nbSamples = nbData;
new files added for the waveform display features...
r20 //
Changes to lfrsge...
r58 wf_v = (short*) malloc(2*nbData);
wf_e1 = (short*) malloc(2*nbData);
wf_e2 = (short*) malloc(2*nbData);
wf_b1 = (short*) malloc(2*nbData);
wf_b2 = (short*) malloc(2*nbData);
wf_b3 = (short*) malloc(2*nbData);
new files added for the waveform display features...
r20 }
WFPacket::~WFPacket()
{
free(wf_v);
free(wf_e1);
free(wf_e2);
free(wf_b1);
free(wf_b2);
free(wf_b3);
}