blob: df28b53177accf522a565e8964f0b970e282e70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/AMI
//
// = FILENAME
// ami_test.idl
//
// = DESCRIPTION
// IDL description of the AMI Test interface
//
// = AUTHOR
// Alexander Babu Arulanthu <alex@cs.wustl.edu>,
// Michael Kircher <Michael.Kircher@mchp.siemens.de>
//
// ============================================================================
module A
{
exception DidTheRightThing {
long id;
string whatDidTheRightThing;
};
interface AMI_Test
{
long foo (out long out_l,
in long in_l,
in string in_str)
raises (DidTheRightThing);
attribute long yadda;
oneway void shutdown ();
};
};
|