summaryrefslogtreecommitdiff
path: root/ace/Service_Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Service_Object.h')
-rw-r--r--ace/Service_Object.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/ace/Service_Object.h b/ace/Service_Object.h
index 21ea527b311..edafff19e47 100644
--- a/ace/Service_Object.h
+++ b/ace/Service_Object.h
@@ -74,15 +74,14 @@ public:
};
// = Initialization and termination methods.
- ACE_Service_Type (const ASYS_TCHAR *n,
+ ACE_Service_Type (const ACE_TCHAR *n,
ACE_Service_Type_Impl *o,
const ACE_SHLIB_HANDLE handle,
int active);
~ACE_Service_Type (void);
- const ASYS_TCHAR *name (void) const;
- void name (const ASYS_TCHAR *);
- const char *chname (void) const;
+ const ACE_TCHAR *name (void) const;
+ void name (const ACE_TCHAR *);
const ACE_Service_Type_Impl *type (void) const;
void type (const ACE_Service_Type_Impl *,
@@ -109,15 +108,9 @@ public:
// Declare the dynamic allocation hooks.
private:
- const ASYS_TCHAR *name_;
+ const ACE_TCHAR *name_;
// Humanly readible name of svc.
-#if defined (ACE_HAS_MOSTLY_UNICODE_APIS)
- char *chname_;
- // This interface is used to pass char name when instantiate
- // ACE_Parse_Node.
-#endif /* ACE_HAS_MOSTLY_UNICODE_APIS */
-
const ACE_Service_Type_Impl *type_;
// Pointer to C++ object that implements the svc.