Update to dms control phase1.
This commit is contained in:
21
src/device/InfoReceiveWorker.h
Normal file
21
src/device/InfoReceiveWorker.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef INFORECEIVEWORKER_H
|
||||
#define INFORECEIVEWORKER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QSharedPointer>
|
||||
|
||||
class InfoReceiveWorker : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
InfoReceiveWorker(QObject* aParent);
|
||||
|
||||
public slots:
|
||||
void startListen();
|
||||
|
||||
signals:
|
||||
void infoReceived(int aServerID, int aActionID, const QString& aContents);
|
||||
|
||||
};
|
||||
|
||||
#endif // INFORECEIVEWORKER_H
|
||||
Reference in New Issue
Block a user