blob: dba551b393cb08e469685f4982f22691056087d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SERVICE_H
#define SERVICE_H
class service
{
public:
const char *getName();
const SERVICE *getService();
service(const char *name, const SERVICE &service);
~service();
private:
char *szName;
SERVICE *pService;
};
#endif
|