summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/module.idl
blob: d40f45963a11d3215a39e78d8fd30220532b1869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

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);
	};
    };
};