forked from Qv2ray/QvPlugin-NaiveProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimplePlugin.hpp
42 lines (36 loc) · 1.35 KB
/
SimplePlugin.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
#pragma once
#include "QvPluginInterface.hpp"
#include <QObject>
#include <QtPlugin>
using namespace Qv2rayPlugin;
class NaiveProxyPlugin
: 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{ "NaiveProxy Plugin", //
"Qv2ray Workgroup", //
"qvplugin_naiveproxy", //
"NaiveProxy Plugin.", //
"v3.0.0", //
"Qv2ray/QvPlugin-Naive", //
{
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(NaiveProxyPlugin);