summaryrefslogtreecommitdiff
path: root/metawatchwatchlets/metawatchwatchletsplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'metawatchwatchlets/metawatchwatchletsplugin.h')
-rw-r--r--metawatchwatchlets/metawatchwatchletsplugin.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/metawatchwatchlets/metawatchwatchletsplugin.h b/metawatchwatchlets/metawatchwatchletsplugin.h
new file mode 100644
index 0000000..a7ba34b
--- /dev/null
+++ b/metawatchwatchlets/metawatchwatchletsplugin.h
@@ -0,0 +1,25 @@
+#ifndef METAWATCHWATCHLETSPLUGIN_H
+#define METAWATCHWATCHLETSPLUGIN_H
+
+#include <sowatch.h>
+
+namespace sowatch
+{
+
+class MetaWatchWatchletsPlugin : public QObject, public WatchletPluginInterface
+{
+ Q_OBJECT
+ Q_INTERFACES(sowatch::WatchletPluginInterface)
+
+public:
+ explicit MetaWatchWatchletsPlugin(QObject *parent = 0);
+ ~MetaWatchWatchletsPlugin();
+
+ QStringList watchlets();
+ WatchletInfo describeWatchlet(const QString &id);
+ Watchlet* getWatchlet(const QString& id, ConfigKey *settings, Watch* watch);
+};
+
+}
+
+#endif // NEKOWATCHLETPLUGIN_H