mirror of
https://github.com/Alukym/VMProtect-Source.git
synced 2025-06-07 18:17:49 -05:00
20 lines
263 B
C++
20 lines
263 B
C++
#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
|