summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Singleton_Manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TAO_Singleton_Manager.h')
-rw-r--r--TAO/tao/TAO_Singleton_Manager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/TAO_Singleton_Manager.h b/TAO/tao/TAO_Singleton_Manager.h
index a3b1ed59802..be2c6bf30c4 100644
--- a/TAO/tao/TAO_Singleton_Manager.h
+++ b/TAO/tao/TAO_Singleton_Manager.h
@@ -48,7 +48,7 @@ class TAO_Export TAO_Singleton_Manager : public ACE_Object_Manager_Base
{
public:
/// Explicitly initialize.
- virtual int init (void);
+ virtual int init ();
/**
* Explicitly initialize the TAO_Singleton_Manager, in addition to
@@ -64,24 +64,24 @@ public:
* Returns 1 before the TAO_Singleton_Manager has been constructed.
* See ACE_Object_Manager::starting_up for more information.
*/
- static int starting_up (void);
+ static int starting_up ();
/// Returns 1 after the TAO_Singleton_Manager has been destroyed.
/// See ACE_Object_Manager::shutting_down for more information.
- static int shutting_down (void);
+ static int shutting_down ();
/// Accesses a default signal set used, for example, in
/// ACE_Sig_Guard methods.
- static sigset_t *default_mask (void);
+ static sigset_t *default_mask ();
/// Returns the current thread hook for the process.
- static ACE_Thread_Hook *thread_hook (void);
+ static ACE_Thread_Hook *thread_hook ();
/// Returns the existing thread hook and assign a new_thread_hook.
static ACE_Thread_Hook *thread_hook (ACE_Thread_Hook *new_thread_hook);
/// Accessor to singleton instance.
- static TAO_Singleton_Manager *instance (void);
+ static TAO_Singleton_Manager *instance ();
/// Register an ACE_Cleanup object for cleanup at process
/// termination.
@@ -119,8 +119,8 @@ public:
protected:
/// Force allocation on the heap.
//@{
- TAO_Singleton_Manager (void);
- ~TAO_Singleton_Manager (void);
+ TAO_Singleton_Manager ();
+ ~TAO_Singleton_Manager ();
//@}
private: