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