summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-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
+