summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-25 05:33:15 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-25 05:33:15 +0000
commit18e2de013e3a2065160dea7167cbb6c1006519bc (patch)
treeca95f6905fb43337173b5e0fc0c925e2a09fa27a /TAO/tests/Smart_Proxies
parentbff61380989c346e47d56a26c842e6786b3201c6 (diff)
downloadATCD-18e2de013e3a2065160dea7167cbb6c1006519bc.tar.gz
idl file for the example
Diffstat (limited to 'TAO/tests/Smart_Proxies')
-rw-r--r--TAO/tests/Smart_Proxies/On_Demand/test.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/Smart_Proxies/On_Demand/test.idl b/TAO/tests/Smart_Proxies/On_Demand/test.idl
new file mode 100644
index 00000000000..c3478d7e120
--- /dev/null
+++ b/TAO/tests/Smart_Proxies/On_Demand/test.idl
@@ -0,0 +1,21 @@
+// $Id$
+
+interface Test
+{
+ // = TITLE
+ // Interface for testing this example.
+ //
+ // = DESCRIPTION
+ // This interface defines a simple object
+ // which has a method which can be 'smartified'
+ // to provide extra functionality.
+
+ exception Oops
+ {
+ string reason;
+ };
+
+ short method (in short boo) raises (Oops);
+
+ oneway void shutdown ();
+};