summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3_to_XMI/Forward_Declared/c_nok.idl
blob: d7449f9dbe86ac8ec183a5a819051bac2e5354c0 (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 N
{

    interface c1: M::a
    {
    };

    component c2 supports M::a
    {
    };

};

#endif // C_IDL