summaryrefslogtreecommitdiff
path: root/ACE/ace/Registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Registry.h')
-rw-r--r--ACE/ace/Registry.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/ACE/ace/Registry.h b/ACE/ace/Registry.h
index 1878c304fe7..8d5e613116e 100644
--- a/ACE/ace/Registry.h
+++ b/ACE/ace/Registry.h
@@ -73,7 +73,7 @@ public:
struct ACE_Export Binding
{
/// Empty (default) constructor
- Binding (void);
+ Binding ();
/// Constructor
/// (Name version)
@@ -97,10 +97,10 @@ public:
void name (ACE_TString &name);
/// Get Name (String version)
- ACE_TString name (void);
+ ACE_TString name ();
/// Type accessor
- Binding_Type type (void);
+ Binding_Type type ();
private:
/// A binding has a name
@@ -188,13 +188,13 @@ public:
};
/// Empty constructor: keys will be NULL
- Naming_Context (void);
+ Naming_Context ();
/// Constructor: key_ will be set to @a key
Naming_Context (const HKEY &key);
/// Destructor will call <Naming_Context::close>.
- ~Naming_Context (void);
+ ~Naming_Context ();
// The following interfaces are for objects
@@ -327,7 +327,7 @@ public:
int unbind_context (const ACE_TString &name);
/// Same as <unbind_context> with @c this as naming_context
- int destroy (void);
+ int destroy ();
/**
* listing function: iterator creator
@@ -347,20 +347,20 @@ public:
// not part of the CORBA interface
/// Sync content of context to disk
- int flush (void);
+ int flush ();
/// Close the handle of the context
/// @note <close> does not call <flush>
- int close (void);
+ int close ();
// Accessors
/// Get key
- HKEY key (void);
+ HKEY key ();
// void parent (HKEY parent);
/// Get parent
- HKEY parent (void);
+ HKEY parent ();
/// Get name
/// (Name version)
@@ -370,7 +370,7 @@ public:
void name (ACE_TString &name);
/// Get name (String version)
- ACE_TString name (void);
+ ACE_TString name ();
protected:
/// Set key
@@ -418,7 +418,7 @@ public:
friend class Naming_Context;
/// Default constructor
- Binding_Iterator (void);
+ Binding_Iterator ();
/// Next entry
int next_one (Binding &binding);
@@ -428,13 +428,13 @@ public:
Binding_List &list);
/// Cleanup
- int destroy (void);
+ int destroy ();
/// Reset the internal state of the iterator
- void reset (void);
+ void reset ();
/// Get naming_context that the iterator is iterating over
- Naming_Context &naming_context (void);
+ Naming_Context &naming_context ();
private:
/// Set naming_context that the iterator is iterating over
@@ -456,10 +456,10 @@ public:
{
public:
/// Constructor
- Iteration_State (void);
+ Iteration_State ();
/// Destructor
- virtual ~Iteration_State (void);
+ virtual ~Iteration_State ();
/// Set the iterator reference.
void iterator (Binding_Iterator *iterator);
@@ -469,7 +469,7 @@ public:
Binding_List &list) = 0;
/// Reset state
- void reset (void);
+ void reset ();
protected:
/// Pointer to parent iterator
@@ -520,7 +520,7 @@ public:
void current_enumeration (Iteration_State& current_enumeration);
/// Get current_enumeration
- Iteration_State &current_enumeration (void);
+ Iteration_State &current_enumeration ();
};
};