#ifndef guard_speak_defs_voice_desc_h #define guard_speak_defs_voice_desc_h //============================================================================== // Miranda Speak Plugin, © 2002 Ryan Winter //============================================================================== #include struct VoiceDesc { std::string engine; std::string voice; int volume; int pitch; int rate; }; //============================================================================== // // Summary : struct describing a voice // // Description : // //============================================================================== #endif