summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3801_Regression/ami_test.idl
blob: 9b24ec68d5955f09f6de5d6c4c3da57b25473777 (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
41
42

//=============================================================================
/**
 *  @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;
    };
    exception DidTheRightThingB {
      long id;
      string whatDidTheRightThing;
    };

    interface AMI_Test
      {
        attribute long yadda
          getraises (DidTheRightThingB)
          setraises (DidTheRightThing);

        readonly attribute long dadda
          raises (DidTheRightThing);

        oneway void shutdown ();

        void inout_arg_test (inout string str);
      };
  };