Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
PluginServiceFreeRDP.cpp
1// Author: Kang Lin <kl222@126.com>
2
3#include "PluginServiceFreeRDP.h"
4#include "ServiceFreeRDP.h"
5
6CPluginServiceFreeRDP::CPluginServiceFreeRDP(QObject *parent)
7 : CPluginService{parent}
8{}
9
10CPluginServiceFreeRDP::~CPluginServiceFreeRDP()
11{}
12
14{
15 return "RDP";
16}
17
18const QString CPluginServiceFreeRDP::Name() const
19{
20 return "FreeRDP";
21}
22
24{
25 return tr("FreeRDP");
26}
27
29{
30 return tr("RDP(Windows remote desktop protocol): Access remote desktops such as windows.");
31}
32
virtual CService * NewService() override
New service.
virtual const QString DisplayName() const override
The plugin display name.
virtual const QString Name() const override
This name must be the same as the project name (${PROJECT_NAME}).
virtual const QString Protocol() const override
Plugin Protocol.
virtual const QString Description() const override
Plugin description.
The service plugin interface.
The service interface.
Definition Service.h:38