summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Smart_Proxies/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Smart_Proxies/test.idl')
-rw-r--r--trunk/TAO/tests/Smart_Proxies/test.idl23
1 files changed, 23 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Smart_Proxies/test.idl b/trunk/TAO/tests/Smart_Proxies/test.idl
new file mode 100644
index 00000000000..f870179f56d
--- /dev/null
+++ b/trunk/TAO/tests/Smart_Proxies/test.idl
@@ -0,0 +1,23 @@
+// $Id$
+
+interface Test
+{
+ // = TITLE
+ // A simple test interface
+ //
+ // = DESCRIPTION
+ // This test demostrates the smart proxy feature in TAO
+ // Note that though the interface has two methods just one
+ // of them can be "smartified" if necessary, the other one
+ // simply performs the same way as would the default proxy.
+
+ exception Oops
+ {
+ string reason;
+ };
+
+ short method (in short boo) raises (Oops);
+
+ oneway void shutdown ();
+};
+