1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef REMOTECONTROL_WIN_H #define REMOTECONTROL_WIN_H class StdInListenerWin : public QThread { Q_OBJECT public: StdInListenerWin(QObject *parent); ~StdInListenerWin(); signals: void receivedCommand(const QString &cmd); private: void run(); }; #endif