Changeset 1310 in ntrip


Ignore:
Timestamp:
Dec 20, 2008, 12:04:03 PM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnc.pro

    r1306 r1310  
    3333          RTCM3/ephemeris.h RTCM3/timeutils.h                         \
    3434          RTIGS/RTIGSDecoder.h RTIGS/rtigs_records.h                  \
    35           RTIGS/cgps_transform.h RTIGS/rtstruct.h RTIGS/rtacp.h RTIGS/gpswro.h
     35          RTIGS/cgps_transform.h RTIGS/rtstruct.h                     \
     36          RTIGS/rtacp.h RTIGS/gpswro.h                                \
     37          GPSS/gpssDecoder.h
    3638
    3739SOURCES = bncmain.cpp bncgetthread.cpp  bncwindow.cpp bnctabledlg.cpp \
     
    4446          RTCM3/RTCM3coDecoder.cpp RTCM3/clock_orbit_rtcm.c           \
    4547          RTCM3/ephemeris.cpp RTCM3/timeutils.cpp                     \
    46           RTIGS/RTIGSDecoder.cpp RTIGS/cgps_transform.cpp
     48          RTIGS/RTIGSDecoder.cpp RTIGS/cgps_transform.cpp             \
     49          GPSS/gpssDecoder.cpp
    4750
    4851RC_FILE = bnc.rc
  • trunk/BNC/bncgetthread.cpp

    r1307 r1310  
    5858#include "RTCM3/RTCM3Decoder.h"
    5959#include "RTIGS/RTIGSDecoder.h"
     60#include "GPSS/gpssDecoder.h"
    6061
    6162using namespace std;
     
    436437      emit(newMessage("Get Data: " + _staID + " in RTIGS format", true));
    437438      _decoder = new RTIGSDecoder();
     439    }
     440    else if (_format.indexOf("GPSS") != -1) {
     441      emit(newMessage("Get Data: " + _staID + " in GPSS format", true));
     442      _decoder = new gpssDecoder();
    438443    }
    439444    else if (_format.indexOf("ZERO") != -1) {
Note: See TracChangeset for help on using the changeset viewer.