diff options
Diffstat (limited to 'TAO/tests/Smart_Proxies')
-rw-r--r-- | TAO/tests/Smart_Proxies/On_Demand/test.idl | 21 |
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 (); +}; |