summaryrefslogtreecommitdiff
path: root/core/service.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/service.h')
-rw-r--r--core/service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/service.h b/core/service.h
index 5c90929..8f624e8 100644
--- a/core/service.h
+++ b/core/service.h
@@ -4,12 +4,12 @@ class service
{
public:
const char *getName();
- const SERVICE *getService();
- service(const char *name, SERVICE *service);
+ const SERVICE getService();
+ service(const char *name, SERVICE service);
~service();
private:
char *szName;
- SERVICE *pService;
+ SERVICE pService;
};
#endif