Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_3801_Regression / ami_test.idl
blob753124d858f8c456af91833a32b3fea44d382565
2 //=============================================================================
3 /**
4 * @file ami_test.idl
6 * IDL description of the AMI Test interface
9 * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
10 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
12 //=============================================================================
16 module A
18 exception DidTheRightThing {
19 long id;
20 string whatDidTheRightThing;
22 exception DidTheRightThingB {
23 long id;
24 string whatDidTheRightThing;
27 interface AMI_Test
29 attribute long yadda
30 getraises (DidTheRightThingB)
31 setraises (DidTheRightThing);
33 readonly attribute long dadda
34 raises (DidTheRightThing);
36 oneway void shutdown ();
38 void inout_arg_test (inout string str);