Changeset 5732 in ntrip


Ignore:
Timestamp:
Jul 31, 2014, 4:28:21 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5731 r5732  
    9494            this, SLOT(slotNewEphGalileo(galileoephemeris)));
    9595
    96     connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
    97             this, SLOT(slotNewCorrections(QList<QString>)));
     96    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
     97            this, SLOT(slotNewCorrections(QStringList)));
    9898  }
    9999}
     
    128128//
    129129////////////////////////////////////////////////////////////////////////////
    130 void t_pppRun::slotNewCorrections(QList<QString> corrList) {
     130void t_pppRun::slotNewCorrections(QStringList corrList) {
    131131  QMutexLocker locker(&_mutex);
    132132  cout << _opt._roverName << " slotNewCorrections" << endl;
  • trunk/BNC/src/PPP/pppThread.h

    r5731 r5732  
    2020  void slotNewEphGlonass(glonassephemeris gloeph);
    2121  void slotNewEphGalileo(galileoephemeris galeph);
    22   void slotNewCorrections(QList<QString> corrList);
     22  void slotNewCorrections(QStringList corrList);
    2323  void slotNewObs(QByteArray staID, QList<t_obs> obsList);
    2424
  • trunk/BNC/src/bnccore.cpp

    r5729 r5732  
    690690////////////////////////////////////////////////////////////////////////////
    691691void t_bncCore::dumpCorrs(bncTime minTime, bncTime maxTime) {
    692   QList<QString> allCorrs;
     692  QStringList allCorrs;
    693693  QMutableMapIterator<bncTime, QString> it(*_corrs);
    694694  while (it.hasNext()) {
     
    706706////////////////////////////////////////////////////////////////////////////
    707707void t_bncCore::dumpCorrs() {
    708   QList<QString> allCorrs;
     708  QStringList allCorrs;
    709709  QMutableMapIterator<bncTime, QString> it(*_corrs);
    710710  while (it.hasNext()) {
     
    717717// Dump List of Corrections
    718718////////////////////////////////////////////////////////////////////////////
    719 void t_bncCore::dumpCorrs(const QList<QString>& allCorrs) {
     719void t_bncCore::dumpCorrs(const QStringList& allCorrs) {
    720720  emit newCorrections(allCorrs);
    721721  if (_socketsCorr) {
  • trunk/BNC/src/bnccore.h

    r5729 r5732  
    8181    void newEphGlonass(glonassephemeris glonasseph);
    8282    void newEphGalileo(galileoephemeris galileoeph);
    83     void newCorrections(QList<QString>);
     83    void newCorrections(QStringList);
    8484    void providerIDChanged(QString);
    8585   
     
    9696    void dumpCorrs(bncTime minTime, bncTime maxTime);
    9797    void dumpCorrs();
    98     void dumpCorrs(const QList<QString>& allCorrs);
     98    void dumpCorrs(const QStringList& allCorrs);
    9999    void messagePrivate(const QByteArray& msg);
    100100    void checkEphemeris(gpsephemeris* oldEph, gpsephemeris* newEph);
  • trunk/BNC/src/bncpppclient.cpp

    r5579 r5732  
    7474            BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
    7575
    76     connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)),
    77             this, SLOT(slotNewCorrections(QList<QString>)));
     76    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
     77            this, SLOT(slotNewCorrections(QStringList)));
    7878
    7979    connect(BNC_CORE, SIGNAL(providerIDChanged(QString)),
     
    254254//
    255255////////////////////////////////////////////////////////////////////////////
    256 void bncPPPclient::slotNewCorrections(QList<QString> corrList) {
     256void bncPPPclient::slotNewCorrections(QStringList corrList) {
    257257  QMutexLocker locker(&_mutex);
    258258
  • trunk/BNC/src/bncpppclient.h

    r5578 r5732  
    132132
    133133 public slots:
    134   void slotNewCorrections(QList<QString> corrList);
     134  void slotNewCorrections(QStringList corrList);
    135135  void slotProviderIDChanged(QString mountPoint);
    136136
  • trunk/BNC/src/rinex/bncpostprocess.cpp

    r5268 r5732  
    169169    if (!_opt->corrFileName.isEmpty()) {
    170170      _corrFile = new t_corrFile(_opt->corrFileName);
    171       connect(_corrFile, SIGNAL(newCorrections(QList<QString>)),
    172               _pppClient, SLOT(slotNewCorrections(QList<QString>)),
     171      connect(_corrFile, SIGNAL(newCorrections(QStringList)),
     172              _pppClient, SLOT(slotNewCorrections(QStringList)),
    173173              Qt::DirectConnection);
    174174    }
  • trunk/BNC/src/rinex/corrfile.cpp

    r3756 r5732  
    7171  }
    7272
    73   QList<QString> corrs;
     73  QStringList corrs;
    7474
    7575  if (!_lastLine.isEmpty()) {
  • trunk/BNC/src/rinex/corrfile.h

    r3756 r5732  
    4040
    4141 signals:
    42   void newCorrections(QList<QString>);
     42  void newCorrections(QStringList);
    4343
    4444 private:
Note: See TracChangeset for help on using the changeset viewer.