summaryrefslogtreecommitdiff
path: root/sowatchd/service.cpp
blob: 0b3777c643508266465042ea132711ff38e97c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "global.h"
#include "service.h"

using namespace sowatch;

Service::Service(QObject *parent) :
	QObject(parent)
{

}

void Service::terminate()
{
	QCoreApplication::exit(0);
}