summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Forwarding/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/Forwarding/test.idl')
-rw-r--r--TAO/examples/POA/Forwarding/test.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/examples/POA/Forwarding/test.idl b/TAO/examples/POA/Forwarding/test.idl
new file mode 100644
index 00000000000..6f4c8f78d99
--- /dev/null
+++ b/TAO/examples/POA/Forwarding/test.idl
@@ -0,0 +1,15 @@
+// $Id$
+
+interface test
+{
+ long doit ();
+ // Returns numbers: they are constantly increasing
+
+ exception Cannot_Forward {};
+ // Raised if object cannot be forwarded.
+
+ void forward ()
+ raises (Cannot_Forward);
+
+ oneway void shutdown ();
+};