Changeset 2001 in ntrip for trunk


Ignore:
Timestamp:
Nov 21, 2009, 3:46:18 PM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r1944 r2001  
    683683  for (long sec = minTime; sec <= maxTime; sec++) {
    684684    QList<QString> allCorrs = _corrs->values(sec);
     685    emit newCorrections(allCorrs);
    685686    QListIterator<QString> it(allCorrs);
    686687    while (it.hasNext()) {
  • trunk/BNC/bncapp.h

    r1549 r2001  
    5757    void newEphGPS(gpsephemeris gpseph);
    5858    void newEphGlonass(glonassephemeris glonasseph);
     59    void newCorrections(QList<QString>);
    5960   
    6061 private slots:
  • trunk/BNC/bnccaster.cpp

    r2000 r2001  
    258258    connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
    259259            PPPthread, SLOT(slotNewEphGPS(gpsephemeris)));
     260    connect(((bncApp*)qApp), SIGNAL(newCorrections(QList<QString>)),
     261            PPPthread, SLOT(slotNewCorrections(QList<QString>)));
    260262    PPPthread->start();
    261263  }
  • trunk/BNC/bncpppthread.cpp

    r1999 r2001  
    9090//
    9191////////////////////////////////////////////////////////////////////////////
    92 void bncPPPthread::slotNewEpochData(QList<p_obs>) {
     92void bncPPPthread::slotNewEpochData(QList<p_obs> obsList) {
    9393
    9494}
     
    9999
    100100}
     101
     102//
     103////////////////////////////////////////////////////////////////////////////
     104void bncPPPthread::slotNewCorrections(QList<QString> corrList) {
     105
     106}
  • trunk/BNC/bncpppthread.h

    r1999 r2001  
    5252
    5353 public slots:
    54   void slotNewEpochData(QList<p_obs>);
     54  void slotNewEpochData(QList<p_obs> obsList);
    5555  void slotNewEphGPS(gpsephemeris gpseph);
     56  void slotNewCorrections(QList<QString> corrList);
    5657
    5758 private:
Note: See TracChangeset for help on using the changeset viewer.