68e444e2f651fedf3c80678cf175e631bed57653
[speedfreak] / Client / main.cpp
1 /**
2   * CarMainWindow main class
3   *
4   * @author     Toni Jussila <toni.jussila@fudeco.com>
5   * @copyright  (c) 2010 Speed Freak team
6   * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
7   */
8
9 #include <QtGui/QApplication>
10 #include "carmainwindow.h"
11
12 int main(int argc, char *argv[])
13 {
14     QApplication a(argc, argv);
15     CarMainWindow w;
16     w.show();
17     return a.exec();
18 }