Added chkconfig runlevel info.
[bpdyndnsd] / src / service.h
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#ifndef SERVICE_H
11#define SERVICE_H
12
13#include <string>
14
4248e8ca
TJ
15class Service
16{
4545a371
BS
17public:
18 Service();
19
4248e8ca 20 virtual ~Service();
4545a371 21
8bca3c5d 22 virtual void update(const std::string&)=0;
4545a371
BS
23
24};
25
26#endif