diff options
Diffstat (limited to 'core/services.h')
-rw-r--r-- | core/services.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/services.h b/core/services.h new file mode 100644 index 0000000..eebe16d --- /dev/null +++ b/core/services.h @@ -0,0 +1,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
|