summaryrefslogtreecommitdiffstats
path: root/examples/widgets/orientation/main.cpp
blob: afaf211b243e05059913f9aab12b14c1217d9311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QtWidgets/QApplication>
#include "mainwindow.h"

//! [0]
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    MainWindow w;
    w.showFullScreen();

    return a.exec();
}
//! [0]