summaryrefslogtreecommitdiff
path: root/core/service.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-08-02 01:48:02 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-08-02 01:48:02 +0300
commitfa6c7360660214c98b66bac9e18144144ee8a7d5 (patch)
tree2fb987694fa5868ad515a7ed462dd42992649ce0 /core/service.h
parentedd1aaf1b394e34de128295ebb75a103da6329b9 (diff)
new file: ../../core/service.h
Diffstat (limited to 'core/service.h')
-rw-r--r--core/service.h15
1 files changed, 15 insertions, 0 deletions
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
+