00001 // -*- IDL -*- 00021 /* 00022 * $Log: DataPort.idl,v $ 00023 * Revision 1.1 2007/01/09 15:40:14 n-ando 00024 * InPort and OutPort interface definition. 00025 * 00026 * 00027 */ 00028 00029 00030 #ifndef DataInPort_idl 00031 #define DataInPort_idl 00032 00033 module RTC 00034 { 00035 interface InPortAny 00036 { 00037 oneway void put(in any data); 00038 }; 00039 00040 00041 interface OutPortAny 00042 { 00043 any get(); 00044 }; 00045 00046 }; 00047 #endif