Youtube video and text (draft).
[speedfreak] / Client / main.cpp
index baffe78..6e7efd9 100644 (file)
@@ -1,18 +1,10 @@
-/*
- * CarMainWindow main class
- *
- * @author     Toni Jussila <toni.jussila@fudeco.com>
- * @copyright  (c) 2010 Speed Freak team
- * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
- */
-
 #include <QtGui/QApplication>
-#include "carmainwindow.h"
+#include "mainwindow.h"
 
 int main(int argc, char *argv[])
 {
     QApplication a(argc, argv);
-    CarMainWindow w;
+    MainWindow w;
     w.show();
     return a.exec();
 }