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

#include "a.idl"

module M
{

    interface c1: M::a
    {
    };

    component c2 supports M::a
    {
    };

};

#endif // C_IDL