summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Twoways/Session.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Twoways/Session.h')
-rw-r--r--TAO/tests/Big_Twoways/Session.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/TAO/tests/Big_Twoways/Session.h b/TAO/tests/Big_Twoways/Session.h
index 94f1f349458..db3d8aed838 100644
--- a/TAO/tests/Big_Twoways/Session.h
+++ b/TAO/tests/Big_Twoways/Session.h
@@ -32,17 +32,15 @@ public:
int svc (void);
// = The skeleton methods
- virtual void start (const Test::Session_List &other_sessions
- ACE_ENV_ARG_DECL)
+ virtual void start (const Test::Session_List &other_sessions)
ACE_THROW_SPEC ((CORBA::SystemException,
Test::Already_Running,
Test::No_Peers));
- virtual Test::Payload* echo_payload (const Test::Payload &the_payload
- ACE_ENV_ARG_DECL)
+ virtual Test::Payload* echo_payload (const Test::Payload &the_payload)
ACE_THROW_SPEC ((CORBA::SystemException));
- virtual void destroy (ACE_ENV_SINGLE_ARG_DECL)
+ virtual void destroy (void)
ACE_THROW_SPEC ((CORBA::SystemException));
protected:
@@ -52,15 +50,14 @@ protected:
private:
/// Helper function used to report any problems and destroy local
/// resources
- void terminate (CORBA::Boolean success
- ACE_ENV_ARG_DECL)
+ void terminate (CORBA::Boolean success)
ACE_THROW_SPEC (());
/// Return 1 if all the work in this session has been completed
int more_work (void) const;
/// Validate all the connections
- void validate_connections (ACE_ENV_SINGLE_ARG_DECL)
+ void validate_connections (void)
ACE_THROW_SPEC (());
private: