diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-03 09:40:07 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-03 09:40:07 +0300 |
commit | 848d632ce9e1bc7ae076c1ea561d997641ae2b87 (patch) | |
tree | 13808eb078e6213b30729666e95136a155954fd7 /core/service.h | |
parent | f2fd1ea7fd8b51a1792b463fb0406e3c9262eb48 (diff) |
service creation/calling working (at least for test service)
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 |