##// END OF EJS Templates
fixed bug on dsu3plugin r45 not valid!
fixed bug on dsu3plugin r45 not valid!

File last commit:

r40:cda6b4e8adc1 Patch 3 from Paul on spwplugin default
r48:4231bcc776dc default
Show More
incomingtcparser.h
26 lines | 472 B | text/x-c | CLexer
#ifndef INCOMINGTCPARSER_H
#define INCOMINGTCPARSER_H
#include <QObject>
class IncomingTCParser : public QObject
{
Q_OBJECT
public:
explicit IncomingTCParser(QObject *parent = 0);
void processIncomingQByteArray(QByteArray incomingQByteArray);
signals:
void sendMessage( QString );
void sendPacketUsingSpaceWire( QByteArray packet );
public slots:
private:
QByteArray localDataArray;
bool incompleteData;
};
#endif // INCOMINGTCPARSER_H