summaryrefslogtreecommitdiff
path: root/CIAO/tests/Bug_4086_Regression/Foo.idl
blob: c3526d98ace7cb827eaa3099b37ebe23ac3c8cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef FOO_IDL_
#define FOO_IDL_

#include <Components.idl>

interface FooSupportBase
{
    attribute short supported_short;
};

interface FooSupport : FooSupportBase
{
};

component Foo supports FooSupport
{
};

#endif /* FOO_IDL_ */