blob: fc862c0572963ac32c620960e761892a26c4a7f0 (
plain)
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
|
#include "sysinfowatchlet.h"
#include "sysinfoplugin.h"
using namespace sowatch;
SysInfoPlugin::SysInfoPlugin(QObject *parent) :
QObject(parent)
{
}
SysInfoPlugin::~SysInfoPlugin()
{
}
QStringList SysInfoPlugin::watchlets()
{
QStringList l;
l << "com.javispedro.sowatch.sysinfo";
return l;
}
Watchlet* SysInfoPlugin::getWatchlet(const QString& driver, QSettings& settings, WatchServer *server)
{
Q_UNUSED(driver);
Q_UNUSED(settings);
return new SysInfoWatchlet(server);
}
Q_EXPORT_PLUGIN2(sysinfowatchlet, SysInfoPlugin)
|