summaryrefslogtreecommitdiff
path: root/TAO/tao/IORInterceptor/IORInterceptor_List.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/IORInterceptor/IORInterceptor_List.h')
-rw-r--r--TAO/tao/IORInterceptor/IORInterceptor_List.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/TAO/tao/IORInterceptor/IORInterceptor_List.h b/TAO/tao/IORInterceptor/IORInterceptor_List.h
index 05bd4f9d3c5..3d77e7aec7a 100644
--- a/TAO/tao/IORInterceptor/IORInterceptor_List.h
+++ b/TAO/tao/IORInterceptor/IORInterceptor_List.h
@@ -24,7 +24,6 @@
#include "IORInterceptorC.h"
#include "tao/Interceptor_List.h"
-#include "tao/PortableServer/ORT_Adapter.h"
/**
* @class TAO_IORInterceptor_List
@@ -54,12 +53,6 @@ public:
/// Return reference to the underlying Portable Interceptor array.
TYPE & interceptors (void);
- void adapter_state_changed (
- const TAO::ORT_Array &array_obj_ref_template,
- PortableInterceptor::AdapterState state
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
protected:
/// Return the length of the underlying interceptor array.
@@ -68,13 +61,14 @@ protected:
/// Set the length of the underlying interceptor array.
virtual void length (size_t);
- /// Return the interceptor in array element @a index.
- virtual PortableInterceptor::Interceptor_ptr interceptor (size_t index);
+ /// Return the interceptor in array element <index>.
+ virtual PortableInterceptor::Interceptor_ptr interceptor (size_t);
private:
/// Dynamic array of registered IOR interceptors.
TYPE interceptors_;
+
};