summaryrefslogtreecommitdiff
path: root/testnotification/testnotificationprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'testnotification/testnotificationprovider.h')
-rw-r--r--testnotification/testnotificationprovider.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/testnotification/testnotificationprovider.h b/testnotification/testnotificationprovider.h
new file mode 100644
index 0000000..9931ea0
--- /dev/null
+++ b/testnotification/testnotificationprovider.h
@@ -0,0 +1,29 @@
+#ifndef TESTNOTIFICATIONPROVIDER_H
+#define TESTNOTIFICATIONPROVIDER_H
+
+#include <sowatch.h>
+
+namespace sowatch
+{
+
+class TestNotification;
+
+class TestNotificationProvider : public NotificationProvider
+{
+ Q_OBJECT
+
+public:
+ explicit TestNotificationProvider(QObject *parent = 0);
+ ~TestNotificationProvider();
+
+private slots:
+ void generateInitialNotification();
+ void generateNotification();
+
+private:
+ QTimer *_timer;
+};
+
+}
+
+#endif // TESTNOTIFICATIONPROVIDER_H