summaryrefslogtreecommitdiff
path: root/TAO/tao/ClientRequestInterceptor_Adapter.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/ClientRequestInterceptor_Adapter.h')
-rw-r--r--TAO/tao/ClientRequestInterceptor_Adapter.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/TAO/tao/ClientRequestInterceptor_Adapter.h b/TAO/tao/ClientRequestInterceptor_Adapter.h
index c3b86edf0a2..95a383058f0 100644
--- a/TAO/tao/ClientRequestInterceptor_Adapter.h
+++ b/TAO/tao/ClientRequestInterceptor_Adapter.h
@@ -26,9 +26,8 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#include "ace/CORBA_macros.h"
-#include "tao/SystemException.h"
#include "tao/Invocation_Utils.h"
+#include "tao/Basic_Types.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -77,34 +76,28 @@ namespace TAO
//@{
/// This method implements one of the "starting" client side
/// interception points.
- virtual void send_request (Invocation_Base &invocation
- ) = 0;
+ virtual void send_request (Invocation_Base &invocation) = 0;
/// This method implements one of the "ending" client side
/// interception point.
- virtual void receive_reply (Invocation_Base &invocation
- ) = 0;
+ virtual void receive_reply (Invocation_Base &invocation) = 0;
/// This method implements one of the "ending" client side
/// interception point.
- virtual void receive_exception (Invocation_Base &invocation
- ) = 0;
+ virtual void receive_exception (Invocation_Base &invocation) = 0;
/// This method implements one of the "ending" client side
/// interception point.
- virtual void receive_other (Invocation_Base &invocation
- ) = 0;
+ virtual void receive_other (Invocation_Base &invocation) = 0;
/// Register an interceptor.
virtual void add_interceptor (
- PortableInterceptor::ClientRequestInterceptor_ptr interceptor
- ) = 0;
+ PortableInterceptor::ClientRequestInterceptor_ptr interceptor) = 0;
/// Register an interceptor with policies.
virtual void add_interceptor (
PortableInterceptor::ClientRequestInterceptor_ptr interceptor,
- const CORBA::PolicyList& policies
- ) = 0;
+ const CORBA::PolicyList& policies) = 0;
virtual void destroy_interceptors (void) = 0;