summaryrefslogtreecommitdiff
path: root/TAO/examples/Event_Comm/Consumer_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Event_Comm/Consumer_Handler.h')
-rw-r--r--TAO/examples/Event_Comm/Consumer_Handler.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/examples/Event_Comm/Consumer_Handler.h b/TAO/examples/Event_Comm/Consumer_Handler.h
index afca7a3f04c..de31459a273 100644
--- a/TAO/examples/Event_Comm/Consumer_Handler.h
+++ b/TAO/examples/Event_Comm/Consumer_Handler.h
@@ -32,7 +32,7 @@ class Consumer_Handler
{
public:
/// Constructor.
- Consumer_Handler (void);
+ Consumer_Handler ();
/// Destructor.
virtual ~Consumer_Handler (void) = default;
@@ -42,25 +42,25 @@ public:
int init (int argc, ACE_TCHAR *argv[], ShutdownCallback *_shutdowncallback);
/// runs the ORB.
- int run (void);
+ int run ();
/// shutdown the orb.
- void close (void);
+ void close ();
/// called to shutdown the consumer application.
- void shutdown (void);
+ void shutdown ();
// = Accessors
- Event_Comm::Consumer *receiver (void);
- Event_Comm::Notifier *notifier (void);
+ Event_Comm::Consumer *receiver ();
+ Event_Comm::Notifier *notifier ();
/// returns the ORB's reactor.
- ACE_Reactor *reactor (void);
+ ACE_Reactor *reactor ();
private:
/// gets the notifier reference from the naming service.
/// returns 0 on success, -1 on error.
- int get_notifier (void);
+ int get_notifier ();
/// Remember our orb.
CORBA::ORB_var orb_;