Changeset 2885 in ntrip


Ignore:
Timestamp:
Jan 26, 2011, 11:54:27 AM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncantex.cpp

    r2884 r2885  
    116116      }
    117117
     118      // Start of Frequency
     119      // ------------------
    118120      else if (line.indexOf("START OF FREQUENCY") == 60) {
    119121        if (newFrqMap) {
     
    127129      }
    128130
     131      // End of Frequency
     132      // ----------------
    129133      else if (line.indexOf("END OF FRQUENCY") == 60) {
    130134        if (newFrqMap) {
     
    146150      }
    147151
     152      // Frequency Reading in Progress
     153      // -----------------------------
    148154      else if (newFrqMap) {
    149155        if      (line.indexOf("NORTH / EAST / UP") == 3) {
    150 
     156          QTextStream inLine(&line, QIODevice::ReadOnly);
     157          inLine >> newFrqMap->neu[0] >> newFrqMap->neu[1] >> newFrqMap->neu[2];
    151158        }
    152159        else if (line.indexOf("NOAZI") == 3) {
     160          QTextStream inLine(&line, QIODevice::ReadOnly);
    153161
    154162        }
Note: See TracChangeset for help on using the changeset viewer.