forked from Qv2ray/QvPlugin-Trojan-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TrojanGoPlugin.hpp
46 lines (40 loc) · 1.39 KB
/
TrojanGoPlugin.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#pragma once
#include "QvPluginInterface.hpp"
#include "core/EventHandler.hpp"
#include "core/Kernel.hpp"
#include "core/Serializer.hpp"
#include <QObject>
#include <QtPlugin>
using namespace Qv2rayPlugin;
class QvTrojanGoPlugin
: public QObject
, public Qv2rayInterface
{
Q_INTERFACES(Qv2rayPlugin::Qv2rayInterface)
Q_PLUGIN_METADATA(IID Qv2rayInterface_IID)
Q_OBJECT
public:
// Basic metainfo of this plugin
const QvPluginMetadata GetMetadata() const override
{
return QvPluginMetadata{
"Trojan-Go Plugin", //
"Qv2ray Workgroup", //
"qvtrojango_plugin", //
"Connect to Trojan-GFW/Trojan-Go server in Qv2ray", //
"v3.0.0", //
"Qv2ray/QvPlugin-Command", //
{
COMPONENT_GUI, //
COMPONENT_KERNEL, //
COMPONENT_OUTBOUND_HANDLER //
},
UPDATE_GITHUB_RELEASE //
};
}
bool InitializePlugin(const QString &, const QJsonObject &) override;
signals:
void PluginLog(const QString &) const override;
void PluginErrorMessageBox(const QString &, const QString &) const override;
};
DECLARE_PLUGIN_INSTANCE(QvTrojanGoPlugin);