#ifndef TCPACKETTOSEND_H #define TCPACKETTOSEND_H #include 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