summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl')
-rw-r--r--modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl27
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl b/modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl
new file mode 100644
index 00000000000..27a5fdc8929
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_ClientContainerInterceptor.idl
@@ -0,0 +1,27 @@
+// $Id$
+
+#if !defined (CCM_CLIENTCONTAINERINTERCEPTOR_IDL)
+#define CCM_CLIENTCONTAINERINTERCEPTOR_IDL
+
+#include "ciao/CCM_ContainerInterceptor.idl"
+#include "ciao/CCM_ContainerClientRequestInfo.idl"
+#include "tao/PI/PIForwardRequest.pidl"
+
+module Components
+{
+ module ContainerPortableInterceptor
+ {
+ local interface ClientContainerInterceptor : ContainerInterceptor
+ {
+ void send_request (in ContainerClientRequestInfo info)
+ raises (PortableInterceptor::ForwardRequest);
+ void send_poll (in ContainerClientRequestInfo info);
+ void receive_reply (in ContainerClientRequestInfo info);
+ void receive_exception (in ContainerClientRequestInfo info)
+ raises (PortableInterceptor::ForwardRequest);
+ void receive_other (in ContainerClientRequestInfo info)
+ raises (PortableInterceptor::ForwardRequest);
+ };
+ };
+};
+#endif /* CCM_CLIENTCONTAINERINTERCEPTOR_IDL */