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

//=============================================================================
/**
 *  @file    ami_test.idl
 *
 *  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
  {
    interface AMI_Test
      {
        long foo (out long out_l);

        oneway void shutdown ();
      };

  };