summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h b/TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h
index 420fd723648..ef6222589ed 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h
+++ b/TAO/orbsvcs/orbsvcs/Naming/Storable_Naming_Context.h
@@ -37,7 +37,7 @@ class TAO_Naming_Serv_Export TAO_Storable_IntId
{
public:
/// Constructor.
- TAO_Storable_IntId (void);
+ TAO_Storable_IntId ();
/// Constructor.
TAO_Storable_IntId (/* in */ const char * ior,
@@ -47,7 +47,7 @@ public:
TAO_Storable_IntId (const TAO_Storable_IntId & rhs);
/// Destructor.
- ~TAO_Storable_IntId (void);
+ ~TAO_Storable_IntId ();
/// Assignment operator.
void operator= (const TAO_Storable_IntId & rhs);
@@ -65,7 +65,7 @@ class TAO_Naming_Serv_Export TAO_Storable_ExtId
{
public:
/// Constructor.
- TAO_Storable_ExtId (void);
+ TAO_Storable_ExtId ();
/// Constructor.
TAO_Storable_ExtId (/* in */ const char *id,
@@ -75,7 +75,7 @@ public:
TAO_Storable_ExtId (const TAO_Storable_ExtId & rhs);
/// Destructor.
- ~TAO_Storable_ExtId (void);
+ ~TAO_Storable_ExtId ();
// = Assignment and comparison methods.
@@ -105,8 +105,8 @@ public:
// Accessors.
// follow the mapping rules!
- const char * id (void);
- const char * kind (void);
+ const char * id ();
+ const char * kind ();
};
@@ -131,19 +131,19 @@ public:
TAO_Storable_Bindings_Map (size_t hash_table_size, CORBA::ORB_ptr orb);
/// Destructor.
- virtual ~TAO_Storable_Bindings_Map (void);
+ virtual ~TAO_Storable_Bindings_Map ();
// = Accessors.
/// Get a reference to the underlying hash map.
- HASH_MAP &map (void);
+ HASH_MAP &map ();
/// Return the size of the underlying hash table.
- size_t total_size (void);
+ size_t total_size ();
/// Return current number of entries (name bindings) in the
/// underlying hash map.
- virtual size_t current_size (void);
+ virtual size_t current_size ();
// = Name bindings manipulation methods.
@@ -228,7 +228,7 @@ public:
size_t hash_table_size = ACE_DEFAULT_MAP_SIZE);
/// Destructor.
- virtual ~TAO_Storable_Naming_Context (void);
+ virtual ~TAO_Storable_Naming_Context ();
// = Utility methods.
/**
@@ -264,7 +264,7 @@ public:
* same naming server in which the operation was invoked. The
* context is not bound.
*/
- virtual CosNaming::NamingContext_ptr new_context (void);
+ virtual CosNaming::NamingContext_ptr new_context ();
/**
* Returns at most the requested number of bindings <how_many> in
@@ -342,14 +342,14 @@ public:
* NOTE: after <destroy> is invoked on a Naming Context, all
* BindingIterators associated with that Naming Context are also destroyed.
*/
- virtual void destroy (void);
+ virtual void destroy ();
protected:
/**
* A helper function to ensure the current object was not destroyed by raising
* an exception if it was. Uses the lock as a Reader.
*/
- void verify_not_destroyed (void);
+ void verify_not_destroyed ();
/**
* A helper function to validate the name argument and return a final context
@@ -364,7 +364,7 @@ protected:
* This will have been done after the file is closed. Check the
* last_changed_ attribute for the time of the write.
*/
- virtual void context_written (void);
+ virtual void context_written ();
/**
* An internal callback invoked by the File_Open_Lock_and_Check
@@ -440,11 +440,11 @@ protected:
/// Check if the guarded object is current with the last
/// update which could have been performed independently of
/// the owner of this object.
- virtual bool object_obsolete (void);
+ virtual bool object_obsolete ();
/// Mark the object as current with respect to the
/// file to which it was persisted.
- virtual void mark_object_current (void);
+ virtual void mark_object_current ();
/// Mark the time at which the object was modified and
virtual void set_object_last_changed (const time_t & time);
@@ -461,7 +461,7 @@ protected:
private:
/// Default constructor
- File_Open_Lock_and_Check(void);
+ File_Open_Lock_and_Check();
TAO_Storable_Naming_Context * context_;
}; // end of embedded class File_Open_Lock_and_Check