diff options
Diffstat (limited to 'core/service.h')
-rw-r--r-- | core/service.h | 6 |
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 |