summaryrefslogtreecommitdiffstats
path: root/examples/animation/example/main.cpp
blob: d5f560732518d9e3b0d71e3f7b8c70c8682c0ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_LICENSE$
**
****************************************************************************/

#include <QtGui>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    //Q_INIT_RESOURCE(example);
    QApplication app(argc, argv);
    MainWindow w;
    w.show();
    return app.exec();
}