Changeset 3705 in ntrip for trunk/BNC/rnxobsfile.cpp


Ignore:
Timestamp:
Feb 16, 2012, 3:34:54 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rnxobsfile.cpp

    r3704 r3705  
    100100        in >> hlp;
    101101        _obsTypesV2 << hlp;
     102      }
     103    }
     104    else if (key == "SYS / # / OBS TYPES") {
     105      QTextStream in(value.toAscii(), QIODevice::ReadOnly);
     106      char sys;
     107      int nTypes;
     108      in >> sys >> nTypes;
     109      for (int ii = 0; ii < nTypes; ii++) {
     110        QString hlp;
     111        in >> hlp;
     112        _obsTypesV3[sys] << hlp;
    102113      }
    103114    }
Note: See TracChangeset for help on using the changeset viewer.