/*************************************/ /* RoIS_Speech_Synthesis.idl */ /*************************************/ module Speech_Synthesis { interface Command : RoIS_Common::Command{ ReturnCode_t set_parameter( in String speech_text, in String SSML_text, in Integer volume, in String language, in RoIS_Identifier character ); }; interface Query : RoIS_Common::Query{ ReturnCode_t get_parameter( out String speech_text, out String SSML_text, out Integer volume, out String language, out RoIS_Identifier character, out sequence synthesizable_languages, out sequence synthesizable_characters ); }; interface Event : RoIS_Common::Event{ }; };