Changeset 5739 in ntrip


Ignore:
Timestamp:
Aug 2, 2014, 12:06:06 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncgetthread.cpp

    r5648 r5739  
    6767#include "RTCM/RTCM2Decoder.h"
    6868#include "RTCM3/RTCM3Decoder.h"
    69 #include "GPSS/gpssDecoder.h"
    70 #include "GPSS/hassDecoder.h"
    7169#include "serial/qextserialport.h"
    7270
     
    294292            this, SIGNAL(newMessage(QByteArray,bool)));
    295293  }
    296   else if (_format.indexOf("GPSS") != -1 || _format.indexOf("BNC") != -1) {
    297     emit(newMessage(_staID + ": Get Data in GPSS format", true));
    298     _decoder = new gpssDecoder();
    299   }
    300294  else if (_format.indexOf("ZERO") != -1) {
    301295    emit(newMessage(_staID + ": Get data in original format", true));
     
    305299    emit(newMessage(_staID + ": Get data in RTNet format", true));
    306300    _decoder = new bncRtnetDecoder();
    307   }
    308   else if (_format.indexOf("HASS2ASCII") != -1) {
    309     emit(newMessage(_staID + ": Get data in HASS2ASCII format", true));
    310     _decoder = new hassDecoder(_staID);
    311301  }
    312302  else {
     
    513503        // Check observation epoch
    514504        // -----------------------
    515         if (!_rawFile && !dynamic_cast<gpssDecoder*>(decoder())) {
     505        if (!_rawFile) {
    516506          int    week;
    517507          double sec;
  • trunk/BNC/src/src.pri

    r5738 r5739  
    5858          RTCM3/RTCM3coDecoder.h                                      \
    5959          RTCM3/clock_and_orbit/clock_orbit_rtcm.h                    \
    60           GPSS/gpssDecoder.h GPSS/hassDecoder.h                       \
    6160          PPP/pppwidgets.h PPP/options.h PPP/pppMain.h                \
    6261          PPP/pppThread.h
     
    8887          RTCM3/RTCM3coDecoder.cpp                                    \
    8988          RTCM3/clock_and_orbit/clock_orbit_rtcm.c                    \
    90           GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp                   \
    9189          PPP/pppwidgets.cpp PPP/options.cpp PPP/pppMain.cpp          \
    9290          PPP/pppThread.cpp
Note: See TracChangeset for help on using the changeset viewer.