summaryrefslogtreecommitdiff
path: root/tests/IDL_Test/module.idl
blob: bf4d84b518579bacfc435a5fb24f7e615e91efdd (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/IDL_Test
//
// = FILENAME
//    module.idl
//
// = DESCRIPTION
//    Tests of module IDL constructs
//
// = AUTHORS
//    Andy Gokhale <gokhale@dre.vanderbilt.edu>
//
// ============================================================================

module mod1
{
  module mod2
  {
    interface ex1
    {
      attribute long l1;
      readonly attribute long l2;

      long m1 (in long a);
    };

    interface ex2 : ex1
    {
      attribute long l3;

      long m2 (in long a, out long b);
    };
  };
};