Rev | Line | |
---|
[4814] | 1 |
|
---|
| 2 | /* -------------------------------------------------------------------------
|
---|
| 3 | * RTNet GUI
|
---|
| 4 | * -------------------------------------------------------------------------
|
---|
| 5 | *
|
---|
[4865] | 6 | * Class: Main Program
|
---|
[4814] | 7 | *
|
---|
| 8 | * Author: L. Mervart
|
---|
| 9 | *
|
---|
| 10 | * Created: 05-Jan-2013
|
---|
| 11 | *
|
---|
| 12 | * Changes:
|
---|
| 13 | *
|
---|
| 14 | * -----------------------------------------------------------------------*/
|
---|
| 15 |
|
---|
[4865] | 16 | #include "app.h"
|
---|
| 17 | #include "mainwin.h"
|
---|
[4814] | 18 |
|
---|
[5001] | 19 | using namespace GnssCenter;
|
---|
[4866] | 20 |
|
---|
[4814] | 21 | // Main Program
|
---|
| 22 | /////////////////////////////////////////////////////////////////////////////
|
---|
| 23 | int main(int argc, char* argv[]) {
|
---|
| 24 |
|
---|
[4865] | 25 | t_app app(argc, argv, true);
|
---|
[5082] | 26 | app.setApplicationName("GnssCenter");
|
---|
| 27 | app.setOrganizationName("BKG");
|
---|
| 28 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
[5452] | 29 | app.setConfFileName("");
|
---|
[4814] | 30 |
|
---|
[4865] | 31 | t_mainWin* mainWin = new t_mainWin();
|
---|
| 32 | mainWin->show();
|
---|
[4814] | 33 |
|
---|
| 34 | return app.exec();
|
---|
| 35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.