summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/module.idl
blob: 178ad2fb68936e86716a0c1058ebf6b3dba4ebdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
	};
    };
};