]> rtime.felk.cvut.cz Git - eurobot/public.git/blob - src/robomon/main.cpp
Remove layers provided by manufacturers
[eurobot/public.git] / src / robomon / main.cpp
1 /*
2  * main.cpp                             07/10/31
3  *
4  * Create a main window and show it.
5  *
6  * Copyright: (c) 2007 CTU Dragons
7  *            CTU FEE - Department of Control Engineering
8  * Authors: Martin Zidek, Michal Sojka, Tran Duy Khanh
9  * License: GNU GPL v.2
10  */
11
12 #include <QApplication>
13 #include "MainWindow.h"
14 #include <stdlib.h>
15
16 int main(int argc, char *argv[])
17 {
18         QApplication app(argc, argv);
19         MainWindow mainWin;
20
21         srand(time(0));
22         qsrand(time(0));
23
24         /*mainWin.resize(QSize(1100, 900));*/
25         mainWin.show();
26         
27         return app.exec();
28 }