summaryrefslogtreecommitdiff
path: root/sowatchd/service.h
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2011-10-17 20:54:22 +0200
committerJavier S. Pedro <maemo@javispedro.com>2011-10-17 20:54:22 +0200
commite8781ec2d43ec3f7f905e20fc76b1910e83ee0c8 (patch)
tree34a842fb825ecc14454ff044fc6af92e29b4ae10 /sowatchd/service.h
parente42e7dca8df8d1e4966545894e2dde228f19b6f0 (diff)
downloadsowatch-e8781ec2d43ec3f7f905e20fc76b1910e83ee0c8.tar.gz
sowatch-e8781ec2d43ec3f7f905e20fc76b1910e83ee0c8.zip
Major change: sowatchd is now a QtM service
Diffstat (limited to 'sowatchd/service.h')
-rw-r--r--sowatchd/service.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/sowatchd/service.h b/sowatchd/service.h
new file mode 100644
index 0000000..797dc3d
--- /dev/null
+++ b/sowatchd/service.h
@@ -0,0 +1,26 @@
+#ifndef SERVICE_H
+#define SERVICE_H
+
+#include <QtCore/QObject>
+#include <QtCore/QList>
+#include <QtCore/QSettings>
+
+#include <sowatch.h>
+
+namespace sowatch
+{
+
+class Service : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Service(QObject *parent = 0);
+
+public slots:
+ void terminate();
+
+};
+
+}
+
+#endif // SERVICE_H