##// END OF EJS Templates
rmapplugin updated, waveform plots removed (exported in gse_lesia)...
rmapplugin updated, waveform plots removed (exported in gse_lesia) echo bridge function added, packet sent to gse-lesia via tcp/ip

File last commit:

r14:304f5a6ad6b4 default
r25:361dd727106d default
Show More
tcpackettosend.h
26 lines | 515 B | text/x-c | CLexer
Add missing files to the repository
r14 #ifndef TCPACKETTOSEND_H
#define TCPACKETTOSEND_H
#include <QObject>
class TCPacketToSend : public QObject
{
Q_OBJECT
public:
TCPacketToSend( char *Value, unsigned int count, char targetLogicalAddress,
char userApplication, unsigned int delay, QObject *parent = 0);
~TCPacketToSend();
char *Value;
unsigned int count;
char targetLogicalAddress;
char userApplication;
unsigned int delay;
signals:
public slots:
};
#endif // TCPACKETTOSEND_H