Changeset 3578 in ntrip for trunk/BNC/GPSS/hassDecoder.cpp


Ignore:
Timestamp:
Dec 26, 2011, 10:24:30 AM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/GPSS/hassDecoder.cpp

    r3520 r3578  
    2020#include "bnctime.h"
    2121#include "bncutils.h"
     22#include "RTCM3/RTCM3coDecoder.h"
    2223
    2324using namespace std;
     
    2526// Constructor
    2627////////////////////////////////////////////////////////////////////////////
    27 hassDecoder::hassDecoder(const QString& staID) : RTCM3coDecoder(staID) {
     28hassDecoder::hassDecoder(const QString& staID) {
    2829  _GPSweeks = -1.0;
    2930}
     
    128129                     0.0, dotRao[0], dotRao[1], dotRao[2], 0.0);
    129130
    130     reopen(_fileNameSkl, _fileName, _out);   
    131     printLine(corrLine, coTime);
     131    RTCM3coDecoder::reopen(_fileNameSkl, _fileName, _out);   
     132    if (_out) {
     133      *_out << corrLine.toAscii().data() << endl;
     134      _out->flush();
     135    }
     136    emit newCorrLine(corrLine, _staID, coTime);
    132137  }
    133138
Note: See TracChangeset for help on using the changeset viewer.