summaryrefslogtreecommitdiffstats
path: root/examples/animation/piemenu/main.cpp
blob: 28f62d01f286b1e6fff74f0cc36dab9ed6f39ecd (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
/****************************************************************************
**
** 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 "scene.h"
#include "qgraphicspiemenu.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    Scene scene;

    QGraphicsView view(&scene);
    view.show();

    return app.exec();
}