Changeset 2885 in ntrip
- Timestamp:
- Jan 26, 2011, 11:54:27 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncantex.cpp ¶
r2884 r2885 116 116 } 117 117 118 // Start of Frequency 119 // ------------------ 118 120 else if (line.indexOf("START OF FREQUENCY") == 60) { 119 121 if (newFrqMap) { … … 127 129 } 128 130 131 // End of Frequency 132 // ---------------- 129 133 else if (line.indexOf("END OF FRQUENCY") == 60) { 130 134 if (newFrqMap) { … … 146 150 } 147 151 152 // Frequency Reading in Progress 153 // ----------------------------- 148 154 else if (newFrqMap) { 149 155 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]; 151 158 } 152 159 else if (line.indexOf("NOAZI") == 3) { 160 QTextStream inLine(&line, QIODevice::ReadOnly); 153 161 154 162 }
Note:
See TracChangeset
for help on using the changeset viewer.