int main (int argc, char** argv)
{
    std::cerr.imbue (deccomma_locale);
    std::cout.imbue (deccomma_locale);
    ers.imbue (deccomma_locale);

    CommonLibTest test (argc, argv);
    bool retcode = !test.run ();
    return retcode;
}
Example #2
0
int main (int argc, char** argv)
{
    std::cerr.imbue (deccomma_locale);
    std::cout.imbue (deccomma_locale);
    ers.imbue (deccomma_locale);

    CommonLibTest test (argc, argv);
    bool retcode = !test.run ();
    std::cout << std::endl << "Press Enter to finish" << std::endl;
    getchar ();
    return retcode;
}