summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/ami_test.idl
blob: 82256ab3c1007a59262e941c7b91ac84c0e73d38 (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

//=============================================================================
/**
 *  @file    ami_test.idl
 *
 *  $Id$
 *
 *  IDL description of the AMI Test interface
 *
 *
 *  @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
 *  @author 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 ();
        
        void inout_arg_test (inout string str);
      };

  };