Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_2805_Regression / ami_test.idl
blob6e6d72f7d81b72c4fa16af659efaebc82b62b005
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;
23 interface AMI_Test
25 long foo (out long out_l,
26 in long in_l,
27 in string in_str)
28 raises (DidTheRightThing);
30 attribute long yadda;
32 oneway void shutdown ();
34 void inout_arg_test (inout string str);