blob: 61235b3395934c6639ed5818a919197eb306a92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//$Id$
#ifndef RACE_OUTPUT_ADAPTER_IDL
#define RACE_OUTPUT_ADAPTER_IDL
#include <Components.idl>
#include "../Interface/PlanEgress.idl"
module CIAO
{
module RACE
{
component Output_Adapter
{
provides PlanEgress plan_egress;
};
};
};
#endif /* RACE_OUTPUT_ADAPTER_IDL */
|