int main(int argc, char** argv)
{
// We need to set the locale to get the input encoded in UTF-8
setlocale (LC_ALL, "");
LoginApp = new App(argc, argv);
LoginApp->Run();
return 0;