mirror of
https://github.com/Alukym/VMProtect-Source.git
synced 2025-06-19 09:48:06 -05:00
Initial commit
This commit is contained in:
19
VMProtect/remotecontrol_win.h
Normal file
19
VMProtect/remotecontrol_win.h
Normal 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
|
Reference in New Issue
Block a user