summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/ami_test.idl
blob: ec9806c65b868d0580e48a1d1e78d0388bda886b (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
43
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/AMI
//
// = FILENAME
//    ami_test.idl
//
// = DESCRIPTION
//    IDL description of the AMI Test interface
//
// = AUTHOR
//    Alexander Babu Arulanthu <alex@cs.wustl.edu>,
//    Michael Kircher <Michael.Kircher@mchp.siemens.de>
//
// ============================================================================


module A 
  {

    struct X 
      {

        long a;

      };

    interface AMI_Test
      {
        long foo (out long out_l, 
                  in long in_l,
                  in string in_str);
        // Get the number as the return value as well as the out value and
        // also puts the value.  
  
         attribute long yadda;
        //  oneway void shutdown ();
      };

  };