Changeset 6600 in ntrip for trunk/BNC/src/upload
- Timestamp:
- Feb 20, 2015, 9:23:22 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncephuploadcaster.cpp
r6443 r6600 66 66 const t_eph* eph = ephLast(it.next()); 67 67 68 const t_ephGPS* ephGPS= dynamic_cast<const t_ephGPS*>(eph);69 const t_ephGlo* ephGlo= dynamic_cast<const t_ephGlo*>(eph);70 const t_ephGal* ephGal= dynamic_cast<const t_ephGal*>(eph);71 const t_ephSBAS* ephSBAS= dynamic_cast<const t_ephSBAS*>(eph);72 const t_eph Compass* ephCompass = dynamic_cast<const t_ephCompass*>(eph);68 const t_ephGPS* ephGPS = dynamic_cast<const t_ephGPS*>(eph); 69 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph); 70 const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph); 71 const t_ephSBAS* ephSBAS = dynamic_cast<const t_ephSBAS*>(eph); 72 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph); 73 73 74 74 unsigned char Array[80]; … … 87 87 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 88 88 } 89 else if (eph Compass) {90 size = t_ephEncoder::RTCM3(*eph Compass, Array);89 else if (ephBDS) { 90 size = t_ephEncoder::RTCM3(*ephBDS, Array); 91 91 } 92 92 if (size > 0) {
Note:
See TracChangeset
for help on using the changeset viewer.