Changeset 5487 in ntrip for trunk/GnssCenter/monitor


Ignore:
Timestamp:
Sep 18, 2013, 2:57:15 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5486 r5487  
    229229  plotSatellites();
    230230  if (_thriftClient) {
    231     QTimer::singleShot(1000, this, SLOT(slotPlotResults()));
     231    QTimer::singleShot(1000, this, SLOT(slotPlot()));
    232232  }
    233233}
     
    269269void t_monitor::plotSatellites() {
    270270  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.