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 |
|
---|
19 | using namespace GnssCenter;
|
---|
20 |
|
---|
21 | // Main Program
|
---|
22 | /////////////////////////////////////////////////////////////////////////////
|
---|
23 | int main(int argc, char* argv[]) {
|
---|
24 |
|
---|
25 | t_app app(argc, argv, true);
|
---|
26 | app.setApplicationName("GnssCenter");
|
---|
27 | app.setOrganizationName("BKG");
|
---|
28 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
29 | app.setConfFileName("");
|
---|
30 |
|
---|
31 | t_mainWin* mainWin = new t_mainWin();
|
---|
32 | mainWin->show();
|
---|
33 |
|
---|
34 | return app.exec();
|
---|
35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.