Rev | Line | |
---|
[747] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Server
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: main
|
---|
| 6 | *
|
---|
| 7 | * Purpose: Application starts here
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 29-Mar-2008
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[748] | 17 | #include <iostream>
|
---|
[747] | 18 |
|
---|
[756] | 19 | #include "bns.h"
|
---|
[748] | 20 | #include "bnswindow.h"
|
---|
[775] | 21 | #include "bnsutils.h"
|
---|
[748] | 22 |
|
---|
[747] | 23 | using namespace std;
|
---|
| 24 |
|
---|
| 25 | // Main Program
|
---|
| 26 | /////////////////////////////////////////////////////////////////////////////
|
---|
| 27 | int main(int argc, char *argv[]) {
|
---|
| 28 |
|
---|
[757] | 29 | // Command-Line Options
|
---|
| 30 | // --------------------
|
---|
[747] | 31 | bool GUIenabled = true;
|
---|
| 32 | for (int ii = 1; ii < argc; ii++) {
|
---|
| 33 | if (QString(argv[ii]) == "-nw") {
|
---|
| 34 | GUIenabled = false;
|
---|
| 35 | break;
|
---|
| 36 | }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[757] | 39 | // Main Qt Class
|
---|
| 40 | // -------------
|
---|
[756] | 41 | QApplication app(argc, argv, GUIenabled);
|
---|
[747] | 42 |
|
---|
[756] | 43 | app.setOrganizationName("BKG");
|
---|
| 44 | app.setOrganizationDomain("www.bkg.bund.de");
|
---|
| 45 | app.setApplicationName("BKG_NTRIP_Server");
|
---|
[747] | 46 |
|
---|
| 47 | // Interactive Mode - open the main window
|
---|
| 48 | // ---------------------------------------
|
---|
| 49 | if (GUIenabled) {
|
---|
[758] | 50 | bnsWindow* bnsWin = new bnsWindow();
|
---|
[748] | 51 | bnsWin->show();
|
---|
[747] | 52 | }
|
---|
| 53 |
|
---|
| 54 | // Non-Interactive (Batch) Mode
|
---|
| 55 | // ----------------------------
|
---|
| 56 | else {
|
---|
[758] | 57 | t_bns* bns = new t_bns();
|
---|
[757] | 58 | bns->start();
|
---|
[747] | 59 | }
|
---|
| 60 |
|
---|
| 61 | return app.exec();
|
---|
| 62 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.