Changeset 1310 in ntrip
- Timestamp:
- Dec 20, 2008, 12:04:03 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bnc.pro ¶
r1306 r1310 33 33 RTCM3/ephemeris.h RTCM3/timeutils.h \ 34 34 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 36 38 37 39 SOURCES = bncmain.cpp bncgetthread.cpp bncwindow.cpp bnctabledlg.cpp \ … … 44 46 RTCM3/RTCM3coDecoder.cpp RTCM3/clock_orbit_rtcm.c \ 45 47 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 47 50 48 51 RC_FILE = bnc.rc -
TabularUnified trunk/BNC/bncgetthread.cpp ¶
r1307 r1310 58 58 #include "RTCM3/RTCM3Decoder.h" 59 59 #include "RTIGS/RTIGSDecoder.h" 60 #include "GPSS/gpssDecoder.h" 60 61 61 62 using namespace std; … … 436 437 emit(newMessage("Get Data: " + _staID + " in RTIGS format", true)); 437 438 _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(); 438 443 } 439 444 else if (_format.indexOf("ZERO") != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.