Shhh.. dont know what i did
[vspell.git] / syllable-test.cpp
blobcda7cac8101f9438624892242397fa3d72825719
1 #include <iostream>
2 #include <string>
3 #include "dictionary.h"
5 using namespace std;
7 int main()
9 Dictionary::Syllable i;
10 string str;
12 while (cin >> str) {
13 cout << i.parse(str.c_str()) << ": ";
14 i.print();
16 return 0;