Changeset 3225 in ntrip for trunk/BNC/upload
- Timestamp:
- Mar 31, 2011, 5:23:30 PM (14 years ago)
- Location:
- trunk/BNC/upload
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncrtnetdecoder.cpp
r3213 r3225 58 58 int outPort = hlp[1].toInt(); 59 59 bool CoM = (hlp[5].toInt() == Qt::Checked); 60 bncUploadCaster* newCaster = new bncUploadCaster(hlp[2], hlp[0], outPort, 60 bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster( 61 hlp[2], hlp[0], outPort, 61 62 hlp[3], hlp[4], CoM, 62 63 hlp[6], hlp[7], ""); -
trunk/BNC/upload/bncrtnetdecoder.h
r3209 r3225 28 28 #include <fstream> 29 29 #include <QtCore> 30 #include "bnc uploadcaster.h"30 #include "bncrtnetuploadcaster.h" 31 31 #include "RTCM/GPSDecoder.h" 32 32 … … 38 38 std::vector<std::string>& errmsg); 39 39 private: 40 QVector<bnc UploadCaster*> _casters;40 QVector<bncRtnetUploadCaster*> _casters; 41 41 }; 42 42 -
trunk/BNC/upload/bncrtnetuploadcaster.h
r3224 r3225 5 5 #include "bncuploadcaster.h" 6 6 #include "bnctime.h" 7 #include "ephemeris.h" 8 extern "C" { 7 9 #include "clock_orbit_rtcm.h" 8 #include "RTCM3/ephemeris.h" 10 } 9 11 10 12 class bncEphUser; 11 12 13 class bncoutf; 13 14 class bncClockRinex;
Note:
See TracChangeset
for help on using the changeset viewer.