Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / HTIOP / AMI / ami_test.idl
blobce44f4ea6745c8871a0e8e2515b2d723ded669db
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 ();