Advertisement
Guest User

Untitled

a guest
May 24th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. voce::init("./lib", true, false, "", "");
  2. voce::init("./lib", false, true, "grammar", "digits");
  3. std::ifstream fi("./grammar/count.dat");
  4. fi.seekg(0, std::ios::beg);
  5.  
  6. while (fi.getline(sayF, 40))
  7. {
  8. if (count%nTab == 0)
  9. voce::synthesize(strSpeech);
  10. else
  11. voce::synthesize(sayF);
  12. Sleep(500);
  13. ++count;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement