2 * Worldvisions Weaver Software:
3 * Copyright (C) 1997-2002 Net Integration Technologies, Inc.
6 #include "wvistreamlist.h"
7 #include "wvqtstreamclone.h"
8 #include <kcmdlineargs.h>
9 #include <kaboutdata.h>
10 #include <kapplication.h>
12 int main(int argc
, char *argv
[])
14 KAboutData
about("unikonf", I18N_NOOP("UniKonf"), VERSION
,
15 I18N_NOOP("UniConf Browser for KDE"),
16 KAboutData::License_LGPL
,
17 "(c) 2002 Net Integration Technologies Inc.", 0,
18 "http://open.nit.ca/wiki/?UniConf");
19 about
.addAuthor("Technical Support", 0, "support@net-itech.com");
21 KCmdLineArgs::init(argc
, argv
, &about
);
24 WvIStreamList
*l
= new WvIStreamList
;
25 WvQtStreamClone
qtclone(l
, 1000);
27 UniKonf
*top_window
= new UniKonf
;
28 app
.setMainWidget(top_window
);
29 top_window
->resize(640,430);