summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Collocated_Forwarding/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Collocated_Forwarding/test.idl')
-rw-r--r--ACE/TAO/tests/Collocated_Forwarding/test.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Collocated_Forwarding/test.idl b/ACE/TAO/tests/Collocated_Forwarding/test.idl
new file mode 100644
index 00000000000..b141b4afb32
--- /dev/null
+++ b/ACE/TAO/tests/Collocated_Forwarding/test.idl
@@ -0,0 +1,20 @@
+// -*- IDL -*-
+//$Id$
+
+#include "tao/PortableInterceptor.pidl"
+#include "tao/PI_Server/PI_Server_include.pidl"
+
+module Collocated_ForwardRequestTest
+{
+ interface test
+ {
+ short collocated_call ();
+ };
+
+ local interface ServerRequestInterceptor
+ : PortableInterceptor::ServerRequestInterceptor
+ {
+ /// Set the references to which requests will be forwarded.
+ void forward (in Object to);
+ };
+};