diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-26 05:49:05 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-26 05:49:05 +0000 |
commit | c156e4165414878488df7295ed6e766a3b1c6160 (patch) | |
tree | 68f9518e2e6e275d3caac90b6b99f5c2d49820f7 /ace/Naming_Context.h | |
parent | e6481c380f40e557fc010b984915d840f42fa585 (diff) | |
download | ATCD-c156e4165414878488df7295ed6e766a3b1c6160.tar.gz |
rock and roll!
Diffstat (limited to 'ace/Naming_Context.h')
-rw-r--r-- | ace/Naming_Context.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/Naming_Context.h b/ace/Naming_Context.h index a1c483e855f..d705fe5ec5e 100644 --- a/ace/Naming_Context.h +++ b/ace/Naming_Context.h @@ -275,6 +275,10 @@ public: void database (const char *db); const char *database (void); + // = Set/Get base address of the underlying allocator + void base_address (char *address); + char *base_address (void); + int debug (void); // Return debug status @@ -303,6 +307,9 @@ private: const char *database_; // Name of the database that stores the name/value/type bindings. + char *base_address_; + // Base address of the underlying allocator + ACE_Naming_Context::Context_Scope_Type context_; // The context in which the naming database will be created. }; |