Maemo package folder added.
[speedfreak] / Client / main.cpp
1 /*
2  * Main
3  *
4  * @copyright  (c) 2010 Speed Freak team
5  * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
6  */
7
8 #include <QtGui/QApplication>
9 #include "mainwindow.h"
10
11 int main(int argc, char *argv[])
12 {
13     QApplication a(argc, argv);
14     MainWindow w;
15     w.show();
16     return a.exec();
17 }