summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h b/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h
index 60c9758d246..f12d4b426b8 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h
@@ -22,7 +22,7 @@ class TAO_Notify_MC_Export TAO_MonitorManager : public ACE_Service_Object
{
public:
/// Perform member initialization
- TAO_MonitorManager (void);
+ TAO_MonitorManager ();
virtual int init (int argc, ACE_TCHAR* argv[]);
virtual int fini ();
@@ -30,20 +30,20 @@ public:
/// Start the ORB task which includes initializtion of the ORB,
/// creation of the monitor servant and activation.
/// If run is called more than once, it will silently perform a no-op.
- int run (void);
+ int run ();
/// This will call the run() method.
- virtual int resume (void);
+ virtual int resume ();
/// Get the dynamic instance of the TAO_MonitorManager and
/// shut it down
- static void shutdown (void);
+ static void shutdown ();
private:
class ORBTask: public ACE_Task_Base
{
public:
- ORBTask (void);
+ ORBTask ();
virtual int svc ();
TAO_SYNCH_MUTEX mutex_;