2010-09-13 11:20:13 +02:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QApplication>
|
2010-09-13 11:20:13 +02:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
|
|
MainWindow mainWindow;
|
2010-11-01 17:03:46 +01:00
|
|
|
mainWindow.setOrientation(MainWindow::ScreenOrientationAuto); // ORIENTATION
|
2010-11-01 19:19:32 +01:00
|
|
|
mainWindow.showExpanded();
|
2010-09-13 11:20:13 +02:00
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|