Changeset 6403 in ntrip
- Timestamp:
- Dec 22, 2014, 11:38:17 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/ephEncoder.cpp
r6375 r6403 321 321 } 322 322 323 int t_ephEncoder::RTCM3(const t_ephSBAS& /* eph */, unsigned char* /* buffer */) { 324 325 return 0; 326 } 327 328 int t_ephEncoder::RTCM3(const t_ephCompass& /* eph */, unsigned char* /* buffer */) { 329 330 return 0; 331 } -
trunk/BNC/src/RTCM3/ephEncoder.h
r5852 r6403 6 6 class t_ephEncoder { 7 7 public: 8 static int RTCM3(const t_ephGPS& eph, unsigned char *); 9 static int RTCM3(const t_ephGlo& eph, unsigned char *); 10 static int RTCM3(const t_ephGal& eph, unsigned char *); 8 static int RTCM3(const t_ephGPS& eph, unsigned char *); 9 static int RTCM3(const t_ephGlo& eph, unsigned char *); 10 static int RTCM3(const t_ephGal& eph, unsigned char *); 11 static int RTCM3(const t_ephSBAS& eph, unsigned char *); 12 static int RTCM3(const t_ephCompass& eph, unsigned char *); 11 13 }; 12 14 -
trunk/BNC/src/upload/bncephuploadcaster.cpp
r5855 r6403 68 68 unsigned char Array[80]; 69 69 int size = 0; 70 t_ephGPS* ephGPS = dynamic_cast<t_ephGPS*>(eph); 71 t_ephGlo* ephGlo = dynamic_cast<t_ephGlo*>(eph); 72 t_ephGal* ephGal = dynamic_cast<t_ephGal*>(eph); 70 t_ephGPS* ephGPS = dynamic_cast<t_ephGPS*>(eph); 71 t_ephGlo* ephGlo = dynamic_cast<t_ephGlo*>(eph); 72 t_ephGal* ephGal = dynamic_cast<t_ephGal*>(eph); 73 t_ephSBAS* ephSBAS = dynamic_cast<t_ephSBAS*>(eph); 74 t_ephCompass* ephCompass = dynamic_cast<t_ephCompass*>(eph); 73 75 if (ephGPS) { 74 76 size = t_ephEncoder::RTCM3(*ephGPS, Array); … … 79 81 else if (ephGal) { 80 82 size = t_ephEncoder::RTCM3(*ephGal, Array); 83 } 84 else if (ephSBAS) { 85 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 86 } 87 else if (ephCompass) { 88 size = t_ephEncoder::RTCM3(*ephCompass, Array); 81 89 } 82 90 if (size > 0) {
Note:
See TracChangeset
for help on using the changeset viewer.