summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h')
-rw-r--r--TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h b/TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h
index cf73b4bca21..c089c8f6ff5 100644
--- a/TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h
+++ b/TAO/orbsvcs/tests/Event/Mcast/Common/EC_Wrapper.h
@@ -29,10 +29,10 @@ public:
/// Create a new EC_Wrapper object.
/// (Constructor access is restricted to insure that all
/// EC_Wrapper objects are heap-allocated.)
- static PortableServer::Servant_var<EC_Wrapper> create (void);
+ static PortableServer::Servant_var<EC_Wrapper> create ();
/// Destructor. Destroys the Event Channel implementation.
- virtual ~EC_Wrapper (void);
+ virtual ~EC_Wrapper ();
/// Create and initialize underlying EC servant.
int init (CORBA::ORB_ptr orb,
@@ -41,13 +41,13 @@ public:
/// RtecEventChannelAdmin::Event_Channel methods.
//@{
virtual RtecEventChannelAdmin::ConsumerAdmin_ptr
- for_consumers (void);
+ for_consumers ();
virtual RtecEventChannelAdmin::SupplierAdmin_ptr
- for_suppliers (void);
+ for_suppliers ();
/// Destroy the Event Channel, deactivate from POA, and shut down
/// the ORB.
- virtual void destroy (void);
+ virtual void destroy ();
virtual RtecEventChannelAdmin::Observer_Handle
append_observer (RtecEventChannelAdmin::Observer_ptr observer);
@@ -57,12 +57,12 @@ public:
protected:
/// Constructor (protected). Clients can create new
/// EC_Wrapper objects using the static create() method.
- EC_Wrapper (void);
+ EC_Wrapper ();
private:
/// Helper - destroys Event Channel and deactivate from POA, if
/// necessary.
- void destroy_ec (void);
+ void destroy_ec ();
/// Event Channel implementation.
/*