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

//=============================================================================
/**
 *  @file    module.idl
 *
 *  Tests of module IDL constructs
 *
 *
 *  @author 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);
    };
  };
};