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