Changeset 5066 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Mar 30, 2013, 11:31:00 AM (12 years ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/RTCM3/RTCM3Decoder.cpp ¶
r4389 r5066 75 75 76 76 connect(this, SIGNAL(newGPSEph(gpsephemeris*)), 77 (bncApp*) qApp, SLOT(slotNewGPSEph(gpsephemeris*)));77 PGM_CORE, SLOT(slotNewGPSEph(gpsephemeris*))); 78 78 connect(this, SIGNAL(newGlonassEph(glonassephemeris*)), 79 (bncApp*) qApp, SLOT(slotNewGlonassEph(glonassephemeris*)));79 PGM_CORE, SLOT(slotNewGlonassEph(glonassephemeris*))); 80 80 connect(this, SIGNAL(newGalileoEph(galileoephemeris*)), 81 (bncApp*) qApp, SLOT(slotNewGalileoEph(galileoephemeris*)));81 PGM_CORE, SLOT(slotNewGalileoEph(galileoephemeris*))); 82 82 83 83 // Mode can be either observations or corrections … … 149 149 // Get Glonass Slot Numbers from Global Array 150 150 // ------------------------------------------ 151 bncApp* app = (bncApp*) qApp; 152 app->getGlonassSlotNums(parser.GLOFreq); 151 PGM_CORE->getGlonassSlotNums(parser.GLOFreq); 153 152 154 153 // Remaining part decodes the Observations … … 378 377 379 378 if (decoded) { 380 app->storeGlonassSlotNums(parser.GLOFreq);379 PGM_CORE->storeGlonassSlotNums(parser.GLOFreq); 381 380 return success; 382 381 } -
TabularUnified trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp ¶
r4900 r5066 73 73 74 74 connect(this, SIGNAL(newCorrLine(QString, QString, long)), 75 (bncApp*) qApp, SLOT(slotNewCorrLine(QString, QString, long)));75 PGM_CORE, SLOT(slotNewCorrLine(QString, QString, long))); 76 76 77 77 connect(this, SIGNAL(newMessage(QByteArray,bool)), 78 (bncApp*) qApp, SLOT(slotMessage(const QByteArray,bool)));78 PGM_CORE, SLOT(slotMessage(const QByteArray,bool))); 79 79 80 80 memset(&_co, 0, sizeof(_co)); -
TabularUnified trunk/BNC/src/RTCM3/ephemeris.cpp ¶
r4904 r5066 416 416 } 417 417 418 if (timeChanged && ((bncApp*) qApp)->mode() ==bncApp::batchPostProcessing) {418 if (timeChanged && PGM_CORE->mode() == t_pgmCore::batchPostProcessing) { 419 419 bncTime newHTime(ww, (double) tow); 420 420 cout << "GLONASS " << ee->almanac_number << " Time Changed at "
Note:
See TracChangeset
for help on using the changeset viewer.