summaryrefslogtreecommitdiff
path: root/TAO/tests/BiDirectional_DelayedUpcall/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/BiDirectional_DelayedUpcall/test_i.h')
-rw-r--r--TAO/tests/BiDirectional_DelayedUpcall/test_i.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/TAO/tests/BiDirectional_DelayedUpcall/test_i.h b/TAO/tests/BiDirectional_DelayedUpcall/test_i.h
index 30b355dcd9c..040bb9a9f53 100644
--- a/TAO/tests/BiDirectional_DelayedUpcall/test_i.h
+++ b/TAO/tests/BiDirectional_DelayedUpcall/test_i.h
@@ -32,11 +32,11 @@ public:
Callback_i (CORBA::ORB_ptr orb);
// ctor
- void shutdown (ACE_ENV_SINGLE_ARG_DECL)
+ void shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException));
// Safe way to shutdown
- void callback_method (ACE_ENV_SINGLE_ARG_DECL)
+ void callback_method (void)
ACE_THROW_SPEC ((CORBA::SystemException));
// The callback method
@@ -58,15 +58,13 @@ public:
// ctor
// = The Simple_Server methods.
- CORBA::Long test_method (CORBA::Boolean do_callback
- ACE_ENV_ARG_DECL_NOT_USED)
+ CORBA::Long test_method (CORBA::Boolean do_callback)
ACE_THROW_SPEC ((CORBA::SystemException));
- void callback_object (Callback_ptr callback
- ACE_ENV_ARG_DECL_NOT_USED)
+ void callback_object (Callback_ptr callback)
ACE_THROW_SPEC ((CORBA::SystemException));
- void shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ void shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual int handle_timeout (const ACE_Time_Value &current_time,