From fa6c7360660214c98b66bac9e18144144ee8a7d5 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Mon, 2 Aug 2010 01:48:02 +0300 Subject: new file: ../../core/service.h --- core/service.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 core/service.h (limited to 'core') diff --git a/core/service.h b/core/service.h new file mode 100644 index 0000000..dba551b --- /dev/null +++ b/core/service.h @@ -0,0 +1,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 + -- cgit v1.2.3