static void usage()

in src/xalanc/Utils/MsgCreator/MsgCreator.cpp [63:79]


static void usage()
{
    cout << "\nUsage:\n"
        "    MsgCreator [options] <XML file>\n\n"
        "This program reads XML message file, and then creates C++  " << endl <<
        " source / data files for message localization (for .dll/.so/.cat build) \n"
        
        "Options:\n"
        "   <XML file>   XLIFF file with messages. Required.  \n"
        "   -TYPE xxx    Type of localization [icu | nls | inmem*]\n"
        "   -LOCALE      Example: [ fr | fr_FR ]; The default value is 'en_US' \n"
        "   -OUTDIR      The directory for the output files. \n"
        "  * = Default if not provided explicitly.\n\n"
        "    -?          Show this help.\n\n"
        "\n"
        <<  endl;
}