Initial commit

This commit is contained in:
Alukym
2023-05-12 20:16:10 +08:00
commit a8433f06ee
1167 changed files with 1036549 additions and 0 deletions

View File

@ -0,0 +1,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