mirror of
https://github.com/Alukym/VMProtect-Source.git
synced 2025-06-21 21:48:01 -05:00
Initial commit
This commit is contained in:
29
VMProtect/remotecontrol.h
Normal file
29
VMProtect/remotecontrol.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef REMOTECONTROL_H
|
||||
#define REMOTECONTROL_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QUrl>
|
||||
|
||||
class HelpEngineWrapper;
|
||||
class MainWindow;
|
||||
|
||||
class RemoteControl : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RemoteControl(QMainWindow *mainWindow);
|
||||
|
||||
signals:
|
||||
void handleNavigateToKeywordCommand(const QString &arg);
|
||||
|
||||
private slots:
|
||||
void receivedData();
|
||||
void handleCommandString(const QString &cmdString);
|
||||
|
||||
private:
|
||||
void splitInputString(const QString &input, QString &cmd, QString &arg);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user