Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
Hook.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef CHOOK_H
4#define CHOOK_H
5
6#include <QObject>
7
13class CHook : public QObject
14{
15
16public:
17 explicit CHook(QObject *parent = nullptr);
18 virtual ~CHook();
19
20 static CHook* GetHook(QObject *parent = nullptr);
21
22 virtual int RegisterKeyboard() = 0;
23 virtual int UnRegisterKeyboard() = 0;
24};
25
26#endif // CHOOK_H
The class is the HOOK abstract class.
Definition Hook.h:14