The Robot Application Programming Interface Delegate Project
|
00001 #ifndef rapid_ext_ProcessIO_idl 00002 #define rapid_ext_ProcessIO_idl 00003 00004 #include "BaseTypes.idl" 00005 #include "Message.idl" 00006 00007 module rapid 00008 { 00009 module ext 00010 { 00011 enum ProcessIOStream { PROCESS_STDIN, PROCESS_STDOUT, PROCESS_STDERR }; 00012 00013 valuetype ProcessIO : Message 00014 { 00015 00016 public long processId; //@key 00017 public ProcessIOStream stream; //@key 00018 public long lineNumber; 00019 public String1K line; 00020 }; 00021 }; 00022 }; 00023 00024 #endif // rapid_ext_ProcessIO_idl 00025