#include #include #include #include #include "htmlsearch.h" static KCmdLineOptions options[] = { { "lang ", I18N_NOOP("The language to index"), "en" }, KCmdLineLastOption // End of options. }; int main(int argc, char *argv[]) { KAboutData aboutData( "khtmlindex", I18N_NOOP("KHtmlIndex"), "", I18N_NOOP("TDE Index generator for help files.")); TDECmdLineArgs::init(argc, argv, &aboutData); TDECmdLineArgs::addCmdLineOptions( options ); KGlobal::locale()->setMainCatalogue("htmlsearch"); TDEApplication app; HTMLSearch search; TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); search.generateIndex(args->getOption("lang")); }