]> rtime.felk.cvut.cz Git - frescor/frsh.git/blob - fres/frm_gui/main.cpp
Merge branch 'master' of molnam1@rtime.felk.cvut.cz:/var/git/frescor/frsh_forb
[frescor/frsh.git] / fres / frm_gui / main.cpp
1 #include <QtGui/QApplication>
2 #include "dialog.h"
3
4 int main(int argc, char *argv[])
5 {
6     QApplication a(argc, argv);
7     Dialog w;
8     w.show();
9     return a.exec();
10 }