blob: 319c94e0d06cce0872bb8b17d0f6d7f126a7cb2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kglobal.h>
#include <kapplication.h>
#include "htmlsearch.h"
static TDECmdLineOptions options[] =
{
{ "lang <lang>", I18N_NOOP("The language to index"), "en" },
TDECmdLineLastOption // End of options.
};
int main(int argc, char *argv[])
{
TDEAboutData aboutData( "tdehtmlindex", I18N_NOOP("KHtmlIndex"),
"",
I18N_NOOP("TDE Index generator for help files."));
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions( options );
TDEGlobal::locale()->setMainCatalogue("htmlsearch");
TDEApplication app;
HTMLSearch search;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
search.generateIndex(args->getOption("lang"));
}
|