Rabbit Remote Control 0.1.0-bate5
Loading...
Searching...
No Matches
HookUnix.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef CHOOKUNIX_H
4#define CHOOKUNIX_H
5
6#include "Hook.h"
7
8class CHookUnix : public CHook
9{
10public:
11 explicit CHookUnix(CParameterClient* pParaClient, QObject *parent = nullptr);
12 virtual ~CHookUnix();
13
14 // CHook interface
15public:
16 virtual int RegisterKeyboard() override;
17 virtual int UnRegisterKeyboard() override;
18};
19
20#endif // CHOOKUNIX_H
The class is the HOOK abstract class.
Definition Hook.h:15