00001 // -*- IDL -*- 00027 /* 00028 * $Log: RTCInPort.idl,v $ 00029 * Revision 1.2 2005/05/27 07:40:46 n-ando 00030 * - InPort/OutPort interface was changed. 00031 * InPort/OutPort share SubscriptionProfile structure. 00032 * 00033 * Revision 1.1.1.1 2005/05/12 09:06:18 n-ando 00034 * Public release. 00035 * 00036 * 00037 */ 00038 00039 #ifndef __RTCInPort_idl__ 00040 #define __RTCInPort_idl__ 00041 00042 00043 #include "RTMBase.idl" 00044 #include "RTCPortBase.idl" 00045 00046 module RTM { 00047 00066 interface InPort 00067 : PortBase 00068 { 00076 void put(in any data) raises(Disconnected); 00077 }; 00078 00086 typedef sequence<InPort> InPortList; 00087 00088 }; // end of module RTM 00089 00090 #endif // __RTCInPort_idl__ 00091