source: ntrip/trunk/GnssCenter/src/rtgui.cpp@ 5000

Last change on this file since 5000 was 4866, checked in by mervart, 11 years ago
File size: 666 bytes
Line 
1
2/* -------------------------------------------------------------------------
3 * RTNet GUI
4 * -------------------------------------------------------------------------
5 *
6 * Class: Main Program
7 *
8 * Author: L. Mervart
9 *
10 * Created: 05-Jan-2013
11 *
12 * Changes:
13 *
14 * -----------------------------------------------------------------------*/
15
16#include "app.h"
17#include "mainwin.h"
18
19using namespace RTGUI;
20
21// Main Program
22/////////////////////////////////////////////////////////////////////////////
23int main(int argc, char* argv[]) {
24
25 t_app app(argc, argv, true);
26
27 t_mainWin* mainWin = new t_mainWin();
28 mainWin->show();
29
30 return app.exec();
31}
Note: See TracBrowser for help on using the repository browser.