Added doxygen comments and changed member names.
[bpdyndnsd] / src / service.h
CommitLineData
4545a371
BS
1//
2// C++ Interface: service
3//
4// Description:
5//
6//
7// Author: Bjoern Sikora <bjoern.sikora@intra2net.com>, (C) 2009
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef SERVICE_H
13#define SERVICE_H
14
15#include <string>
16
17using namespace std;
18
19/**
4248e8ca 20 @author Bjoern Sikora <bjoern.sikora@intra2net.com>
4545a371 21*/
4248e8ca
TJ
22class Service
23{
4545a371
BS
24public:
25 Service();
26
4248e8ca 27 virtual ~Service();
4545a371
BS
28
29 virtual void update(string)=0;
30
31};
32
33#endif