summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3_to_XMI/Forward_Declared/a.idl
blob: 501d649da7fd8417e091e41e9ffe78f60d89a1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

#ifndef A_IDL
#define A_IDL

#include "b.idl"

module M
{

    interface b;

    interface a
    {
        attribute b b1;
    };

};

#endif // A_IDL