summaryrefslogtreecommitdiff
path: root/notificationswatchlet/notificationswatchletplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'notificationswatchlet/notificationswatchletplugin.cpp')
-rw-r--r--notificationswatchlet/notificationswatchletplugin.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/notificationswatchlet/notificationswatchletplugin.cpp b/notificationswatchlet/notificationswatchletplugin.cpp
new file mode 100644
index 0000000..a3ebbd7
--- /dev/null
+++ b/notificationswatchlet/notificationswatchletplugin.cpp
@@ -0,0 +1,29 @@
+#include "notificationswatchlet.h"
+#include "notificationswatchletplugin.h"
+
+using namespace sowatch;
+
+NotificationsWatchletPlugin::NotificationsWatchletPlugin(QObject *parent) :
+ QObject(parent)
+{
+}
+
+NotificationsWatchletPlugin::~NotificationsWatchletPlugin()
+{
+}
+
+QStringList NotificationsWatchletPlugin::watchlets()
+{
+ QStringList l;
+ l << "com.javispedro.sowatch.notifications";
+ return l;
+}
+
+Watchlet* NotificationsWatchletPlugin::getWatchlet(const QString& driver, QSettings& settings, WatchServer *server)
+{
+ Q_UNUSED(driver);
+ Q_UNUSED(settings);
+ return new NotificationsWatchlet(server);
+}
+
+Q_EXPORT_PLUGIN2(notificationswatchlet, NotificationsWatchletPlugin)