Changeset 4011 in ntrip
- Timestamp:
- Apr 22, 2012, 12:31:36 PM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/rnxnavfile.cpp
r4010 r4011 271 271 //////////////////////////////////////////////////////////////////////////// 272 272 void t_rnxNavFile::writeEph(const t_eph* eph) { 273 *_stream << "PRN = " << eph->prn() << endl; 274 } 273 if (version() < 3.0) { 274 writeEphV2(eph); 275 } 276 else { 277 writeEphV3(eph); 278 } 279 } 280 281 // 282 //////////////////////////////////////////////////////////////////////////// 283 void t_rnxNavFile::writeEphV2(const t_eph* eph) { 284 } 285 286 // 287 //////////////////////////////////////////////////////////////////////////// 288 void t_rnxNavFile::writeEphV3(const t_eph* eph) { 289 } -
trunk/BNC/rinex/rnxnavfile.h
r4008 r4011 69 69 private: 70 70 void read(QTextStream* stream); 71 void writeEphV2(const t_eph* eph); 72 void writeEphV3(const t_eph* eph); 71 73 72 74 e_inpOut _inpOut;
Note:
See TracChangeset
for help on using the changeset viewer.