summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h')
-rw-r--r--TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h24
1 files changed, 10 insertions, 14 deletions
diff --git a/TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h b/TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h
index 5f557db27ee..b8505bdb9c8 100644
--- a/TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h
+++ b/TAO/orbsvcs/tests/CosEvent/lib/Counting_Supplier.h
@@ -41,17 +41,15 @@ public:
// = The CosEventComm::PushSupplier methods
- void connect (CosEventChannelAdmin::SupplierAdmin_ptr supplier_admin
- ACE_ENV_ARG_DECL);
- void disconnect (ACE_ENV_SINGLE_ARG_DECL);
+ void connect (CosEventChannelAdmin::SupplierAdmin_ptr supplier_admin);
+ void disconnect (void);
// Simple connect/disconnect methods..
- void push (const CORBA::Any& events
- ACE_ENV_ARG_DECL)
+ void push (const CORBA::Any& events)
ACE_THROW_SPEC ((CORBA::SystemException));
// Push an event.
- virtual void disconnect_push_supplier (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ virtual void disconnect_push_supplier (void)
ACE_THROW_SPEC ((CORBA::SystemException));
// The skeleton methods.
@@ -79,7 +77,7 @@ public:
void stop (void);
CORBA::ULong push_count (void);
- void run (ACE_ENV_SINGLE_ARG_DECL);
+ void run (void);
// Run a single iteration of the test
private:
@@ -115,18 +113,16 @@ public:
// = The CosEventComm::PullSupplier methods
- void connect (CosEventChannelAdmin::SupplierAdmin_ptr supplier_admin
- ACE_ENV_ARG_DECL);
- void disconnect (ACE_ENV_SINGLE_ARG_DECL);
+ void connect (CosEventChannelAdmin::SupplierAdmin_ptr supplier_admin);
+ void disconnect (void);
// Simple connect/disconnect methods..
// The PullSupplier methods.
- CORBA::Any* pull (ACE_ENV_SINGLE_ARG_DECL)
+ CORBA::Any* pull (void)
ACE_THROW_SPEC ((CORBA::SystemException,CosEventComm::Disconnected));
- CORBA::Any* try_pull (CORBA::Boolean_out has_event
- ACE_ENV_ARG_DECL)
+ CORBA::Any* try_pull (CORBA::Boolean_out has_event)
ACE_THROW_SPEC ((CORBA::SystemException,CosEventComm::Disconnected));
- virtual void disconnect_pull_supplier (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ virtual void disconnect_pull_supplier (void)
ACE_THROW_SPEC ((CORBA::SystemException));
CORBA::ULong event_count;