Changed file structure and removed useless output files.
[speedfreak] / Client / main.cpp
1 #include <QtGui/QApplication>
2 #include <QStyleFactory>
3 #include "carmainwindow.h"
4
5 int main(int argc, char *argv[])
6 {
7     QApplication a(argc, argv);
8     CarMainWindow w;
9     w.show();
10     return a.exec();
11 }