summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h')
-rw-r--r--TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h b/TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h
index 3f131c1d4fa..8f848d01721 100644
--- a/TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h
+++ b/TAO/orbsvcs/tests/EC_MT_Mcast/Supplier.h
@@ -21,21 +21,21 @@ class Supplier : public POA_RtecEventComm::PushSupplier
// method is invoked it pushes the event through the event service
//
public:
- Supplier (void);
+ Supplier ();
// Constructor
void connect (RtecEventChannelAdmin::SupplierAdmin_ptr supplier_admin);
// Connect to the event channel
- void disconnect (void);
+ void disconnect ();
// Disconnect from the event channel
- void perform_push (void);
+ void perform_push ();
// Push a single event
// = The RtecEventComm::PushSupplier methods
- virtual void disconnect_push_supplier (void);
+ virtual void disconnect_push_supplier ();
// The skeleton methods.
private: