Changeset 2023 in ntrip
- Timestamp:
- Nov 25, 2009, 6:09:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppthread.cpp
r2022 r2023 67 67 delete it.value(); 68 68 } 69 QMapIterator<QString, t_corr*> ic(_corr); 70 while (ic.hasNext()) { 71 ic.next(); 72 delete ic.value(); 73 } 69 74 } 70 75 … … 105 110 p_obs pp = it.next(); 106 111 t_obsInternal* obs = &(pp->_o); 107 Q String staID = QString(obs->StatID);112 QByteArray staID = QByteArray(obs->StatID); 108 113 cout << "DATA " << obs->GPSWeek << " " << obs->GPSWeeks << " " 109 << staID. toAscii().data() << " "114 << staID.data() << " " 110 115 << obs->satSys << obs->satNum << endl; 111 116 }
Note:
See TracChangeset
for help on using the changeset viewer.