Changeset 4011 in ntrip for trunk/BNC/rinex


Ignore:
Timestamp:
Apr 22, 2012, 12:31:36 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/rnxnavfile.cpp

    r4010 r4011  
    271271////////////////////////////////////////////////////////////////////////////
    272272void 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////////////////////////////////////////////////////////////////////////////
     283void t_rnxNavFile::writeEphV2(const t_eph* eph) {
     284}
     285
     286//
     287////////////////////////////////////////////////////////////////////////////
     288void t_rnxNavFile::writeEphV3(const t_eph* eph) {
     289}
  • trunk/BNC/rinex/rnxnavfile.h

    r4008 r4011  
    6969 private:
    7070  void read(QTextStream* stream);
     71  void writeEphV2(const t_eph* eph);
     72  void writeEphV3(const t_eph* eph);
    7173
    7274  e_inpOut            _inpOut;
Note: See TracChangeset for help on using the changeset viewer.