NSS now builds into an RPM.
[fedora-mingw.git] / qt-win / main.cpp
1 /****************************************************************************
2     **
3     ** Copyright (C) 2004-2005 Trolltech AS. All rights reserved.
4     **
5     ** This file is part of the documentation of the Qt Toolkit.
6     **
7     ** This file may be used under the terms of the GNU General Public
8 ** License version 2.0 as published by the Free Software Foundation
9 ** and appearing in the file LICENSE.GPL included in the packaging of
10 ** this file.  Please review the following information to ensure GNU
11 ** General Public Licensing requirements will be met:
12 ** http://www.trolltech.com/products/qt/opensource.html
13 **
14 ** If you are unsure which license is appropriate for your use, please
15 ** review the following information:
16 ** http://www.trolltech.com/products/qt/licensing.html or contact the
17 ** sales department at sales@trolltech.com.
18     **
19     ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
20     ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21     **
22     ****************************************************************************/
23
24     #include <QApplication>
25
26     #include "mainwindow.h"
27
28     int main(int argc, char *argv[])
29     {
30         Q_INIT_RESOURCE(application);
31
32         QApplication app(argc, argv);
33         MainWindow mainWin;
34         mainWin.show();
35         return app.exec();
36     }