summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/Inherited_Component/IhC_Foo.idl
blob: 7e67ef8545cf1e7f3b988238aef19e5fcb2871d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef IHC_FOO_IDL
#define IHC_FOO_IDL

#include <Components.idl>

#pragma ciao lem "IhC_FooE.idl"

interface foo_intf
{
};

component Foo
{
  provides foo_intf foo_port;
};

home FooHome manages Foo
{
  attribute string str_attr;
};

#endif // IHC_FOO_IDL