diff options
Diffstat (limited to 'ace/Registry.h')
-rw-r--r-- | ace/Registry.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/ace/Registry.h b/ace/Registry.h index 1172290300a..5fa265720cd 100644 --- a/ace/Registry.h +++ b/ace/Registry.h @@ -37,8 +37,8 @@ class ACE_Export ACE_Registry // = DESCRIPTION // The registry interface is inspired by the interface // specified in the CORBA Naming Service Specification. - // The implementation is done through Win32 Reg*() functions. - // Other than providing an OO wrapper for the Win32 Reg*() + // The implementation is done through Win32 <Reg*> functions. + // Other than providing an OO wrapper for the Win32 <Reg*> // functions, ACE_Registry provides an abstraction for iteration // over the elements of the Registry. public: @@ -79,7 +79,7 @@ public: struct ACE_Export Binding { - Binding (); + Binding (void); // Empty (default) constructor Binding (const Name &binding_name, @@ -184,8 +184,7 @@ public: // Constructor: key_ will be set to <key> ~Naming_Context (void); - // Destructor will call this->close() - + // Destructor will call <Naming_Context::close>. // The following interfaces are for objects @@ -306,7 +305,7 @@ public: // Remove naming_context with <name> from <this> context int destroy (void); - // Same as unbind_context() with <this> as naming_context + // Same as <unbind_context> with <this> as naming_context int list (u_long how_many, Binding_List &list, @@ -329,7 +328,7 @@ public: int close (void); // Close the handle of the context - // Note: close() does not call flush() + // Note: <close> does not call <flush> // Accessors @@ -393,7 +392,7 @@ public: friend class Naming_Context; // Friend factory - Binding_Iterator (); + Binding_Iterator (void); // Default constructor int next_one (Binding &binding); @@ -434,7 +433,7 @@ public: Binding_List &list) = 0; // Next <how_many> entries - void reset (); + void reset (void); // Reset state protected: |