Doing work to make the query print something useful, but this breaks the build. WiP

This commit is contained in:
King_DuckZ 2013-08-17 03:58:03 +02:00
parent fb49c84899
commit f861039851
4 changed files with 30 additions and 4 deletions

View file

@ -102,8 +102,8 @@ int main (int parArgc, const char* const parArgv[]) {
}
WordReference wref("en", "it", DefApiKey);
wref.Translate("house");
wref.Translate("house", std::wcout);
std::cout << wref.GetHttpLink("north face") << "\nWritten by King_DuckZ; © WordReference.com" << std::endl;
std::wcout << wref.GetHttpLink("north face") << L"\nWritten by King_DuckZ; © WordReference.com" << std::endl;
return 0;
}