Initial structure. New abstract levels: dataobjecst, storage
[someplayer] / src / main.cpp
1 #include <QtGui/QApplication>
2 #include "mainwindow.h"
3
4 int main(int argc, char *argv[])
5 {
6         QApplication a(argc, argv);
7         a.setApplicationName("someplayer");
8         MainWindow w;
9 #if defined(Q_WS_S60)
10         w.showMaximized();
11 #else
12         w.show();
13 #endif
14
15         return a.exec();
16 }