##// END OF EJS Templates
Removed crash on spwplugin while closing the manager thread didn't quit correctly.
Removed crash on spwplugin while closing the manager thread didn't quit correctly.

File last commit:

r51:87980339c225 default
r82:f085b545eb20 socexplorer-plugins-0.7-2 default
Show More
incomingpacketparser.h
26 lines | 480 B | text/x-c | CLexer
#ifndef INCOMINGTCPARSER_H
#define INCOMINGTCPARSER_H
#include <QObject>
class IncomingPacketParser : public QObject
{
Q_OBJECT
public:
explicit IncomingPacketParser(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