summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_2909_Regression/ami_test.idl
blob: 545b5ea22720306950307066f5a862ed5854ea96 (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 {
    };
    exception DidTheWrongThing {
    };

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

        oneway void shutdown ();
      };
  };