Rabbit Remote Control
0.0.30
Loading...
Searching...
No Matches
Client
Hook.cpp
1
// Author: Kang Lin <kl222@126.com>
2
3
#include "Hook.h"
4
5
#include <QLoggingCategory>
6
7
static
Q_LOGGING_CATEGORY(log,
"Client.Hook"
)
8
9
CHook
::
CHook
(QObject *parent)
10
: QObject(parent)
11
{}
12
13
CHook::~CHook()
14
{
15
qDebug(log) <<
"CHook::~CHook()"
;
16
}
17
18
#ifdef Q_OS_ANDROID
19
CHook
* CHook::GetHook(QObject *parent)
20
{
21
return
nullptr
;
22
}
23
#endif
CHook
The class is the HOOK abstract class.
Definition
Hook.h:14
作者:康林 (kl222@126.com)
版权所有(c) 康林工作室 保留所有权力