Implemented Database storage for library.
[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
10 #if defined(Q_WS_S60)
11         w.showMaximized();
12 #else
13         w.show();
14 #endif
15
16         return a.exec();
17 }