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

//=============================================================================
/**
 *  @file    ami_test.idl
 *
 *  $Id$
 *
 *  IDL description of the AMI Test interface
 *
 *
 *  @author Johnny Willemsen  <jwillemsen@remedy.nl>
 */
//=============================================================================



module A
  {
    exception DidTheRightThing {
      long id;
      wstring whatDidTheRightThing;
    };

    interface AMI_Test
      {
        void foo (in long value) raises (DidTheRightThing);

        oneway void shutdown ();
      };

  };