summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_StubContainerInterceptor.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_StubContainerInterceptor.idl')
-rw-r--r--modules/CIAO/ciao/CCM_StubContainerInterceptor.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_StubContainerInterceptor.idl b/modules/CIAO/ciao/CCM_StubContainerInterceptor.idl
new file mode 100644
index 00000000000..c183801af86
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_StubContainerInterceptor.idl
@@ -0,0 +1,26 @@
+// $Id$
+
+#if !defined (CCM_STUBCONTAINERINTERCEPTOR_IDL)
+#define CCM_STUBCONTAINERINTERCEPTOR_IDL
+
+#include "ciao/CCM_ContainerInterceptor.idl"
+#include "ciao/CCM_ContainerStubRequestInfo.idl"
+#include "tao/PI/PIForwardRequest.pidl"
+
+module Components
+{
+ module ContainerPortableInterceptor
+ {
+ local interface StubContainerInterceptor : ContainerInterceptor
+ {
+ void stub_send_request (in ContainerStubRequestInfo info, out boolean con)
+ raises (PortableInterceptor::ForwardRequest);
+ void stub_receive_reply (in ContainerStubRequestInfo info, out boolean con);
+ void stub_receive_exception (in ContainerStubRequestInfo info, out boolean con)
+ raises(PortableInterceptor::ForwardRequest);
+ void stub_receive_other (in ContainerStubRequestInfo info)
+ raises(PortableInterceptor::ForwardRequest);
+ };
+ };
+};
+#endif /* CCM_STUBCONTAINERINTERCEPTOR_IDL */