blob: 8f624e8fca29d2103a153344f7cac751cb4b8aa1 (
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, SERVICE service);
~service();
private:
char *szName;
SERVICE pService;
};
#endif
|