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

#ifndef B_IDL
#define B_IDL

#include "a.idl"

module M
{

    interface a;

    interface b
    {
        attribute a a1;
    };

};

#endif // B_IDL