diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-23 05:45:46 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-23 05:45:46 +0000 |
commit | 30aaea4635ebd190e2a9693991599ceb5a7d3ed3 (patch) | |
tree | 5707669ee042b2ae2149fec62b4694055c52a603 /ace/Naming_Context.h | |
parent | 8296e7751816f7b5b9826bd96899782d28ac7662 (diff) | |
download | ATCD-30aaea4635ebd190e2a9693991599ceb5a7d3ed3.tar.gz |
ChangeLogTag: Tue Apr 23 07:38:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Naming_Context.h')
-rw-r--r-- | ace/Naming_Context.h | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/ace/Naming_Context.h b/ace/Naming_Context.h index 605eb7e8e9e..828866efb49 100644 --- a/ace/Naming_Context.h +++ b/ace/Naming_Context.h @@ -287,36 +287,52 @@ public: void parse_args (int argc, ACE_TCHAR *argv[]); - // = Set/Get port number + /// Set the port number void nameserver_port (int port); + + /// Get the port number int nameserver_port (void); - // = Set/Get the context + /// Get the context ACE_Naming_Context::Context_Scope_Type context (void); + + /// Set the context void context (ACE_Naming_Context::Context_Scope_Type); - // = Set/Get host name + /// Set the host name void nameserver_host (const ACE_TCHAR *host); + + /// Get the host name const ACE_TCHAR *nameserver_host (void); - // = Set/Get name space directory + /// Set name space directory void namespace_dir (const ACE_TCHAR *dir); + + /// Get name space directory const ACE_TCHAR *namespace_dir (void); - // = Set/Get process name + /// Set process name void process_name (const ACE_TCHAR *dir); + + /// Get process name const ACE_TCHAR *process_name (void); - // = Set/Get database name + /// Set database name void database (const ACE_TCHAR *); + + /// Get database name const ACE_TCHAR *database (void); - // = Set/Get base address of the underlying allocator + /// Set base address of the underlying allocator void base_address (char *address); + + /// Get base address of the underlying allocator char *base_address (void); - // Set/Get use of registry in naming + /// Get use of registry in naming int use_registry (void); + + /// Set use of registry in naming void use_registry (int); /// Return debug status |