- Timestamp:
- Sep 18, 2013, 2:57:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5486 r5487 229 229 plotSatellites(); 230 230 if (_thriftClient) { 231 QTimer::singleShot(1000, this, SLOT(slotPlot Results()));231 QTimer::singleShot(1000, this, SLOT(slotPlot())); 232 232 } 233 233 } … … 269 269 void t_monitor::plotSatellites() { 270 270 if (_satellites) { 271 } 272 } 271 for (unsigned ii = 0; ii < _satellites->size(); ii++) { 272 const t_thriftSatellite* sat = _satellites->at(ii); 273 qDebug() << sat->_prn.c_str(); 274 } 275 } 276 }
Note:
See TracChangeset
for help on using the changeset viewer.