Added chkconfig runlevel info.
[bpdyndnsd] / src / service.cpp
CommitLineData
b1be615b
BS
1/** @file
2 * @brief The abstract service interface. This class represents all services.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
4545a371
BS
10#include "service.h"
11
85a0abf9
BS
12/**
13 * Default Constructor
14 */
4545a371
BS
15Service::Service()
16{
254bbf53 17
4545a371
BS
18}
19
85a0abf9
BS
20/**
21 * Default Destructor
22 */
4545a371
BS
23Service::~Service()
24{
254bbf53 25
4545a371
BS
26}
27
28