Changeset 153 in ntrip


Ignore:
Timestamp:
Sep 9, 2006, 10:18:00 AM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r132 r153  
    3939  _rnxScriptName = settings.value("rnxScript").toString();
    4040  expandEnvVar(_rnxScriptName);
     41
     42  // Find the corresponding mountPoint
     43  // ---------------------------------
     44  QListIterator<QString> it(settings.value("mountPoints").toStringList());
     45  while (it.hasNext()) {
     46    QString hlp = it.next();
     47    if (hlp.indexOf(_statID) != -1) {
     48      _mountPoint = hlp;
     49      break;
     50    }
     51  }
    4152}
    4253
  • trunk/BNC/bncrinex.h

    r132 r153  
    3434   QString             _rnxScriptName;
    3535   QProcess            _rnxScript;
     36   QString             _mountPoint;
    3637};
    3738
Note: See TracChangeset for help on using the changeset viewer.