##// END OF EJS Templates
lfrsgse updated after integration at LESIA...
lfrsgse updated after integration at LESIA LESIA echo bridge does not transmit the CCSDS header

File last commit:

r14:304f5a6ad6b4 default
r44:8d1a3ffe9394 default
Show More
tcpackettosend.h
26 lines | 515 B | text/x-c | CLexer
#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