summaryrefslogtreecommitdiff
path: root/sowatchd/service.h
blob: 797dc3d5216c2add5a1a41e7e444f0bc42de95c7 (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
#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