Rabbit Remote Control 0.1.0-bate5
Loading...
Searching...
No Matches
HookUnix.cpp
1// Author: Kang Lin <kl222@126.com>
2
3#include "HookUnix.h"
4
5#include <QDebug>
6#include <QApplication>
7#include <QWidget>
8#include <QAbstractEventDispatcher>
9#include <QLoggingCategory>
10
11CHookUnix::CHookUnix(CParameterClient *pParaClient, QObject *parent)
12 : CHook(pParaClient, parent)
13{
14}
15
16CHookUnix::~CHookUnix()
17{
18}
19
20int CHookUnix::RegisterKeyboard()
21{
22 return 0;
23}
24
25int CHookUnix::UnRegisterKeyboard()
26{
27 return 0;
28}
The class is the HOOK abstract class.
Definition Hook.h:15