summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3_to_XMI/Forward_Declared/a.idl
blob: dac68967d9821a1424fec6eea026d6cb099c9807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef A_IDL
#define A_IDL

#include "b.idl"

module M
{

    interface b;

    interface a
    {
        attribute b b1;
    };

};

#endif // A_IDL