Changeset 436 in ntrip


Ignore:
Timestamp:
Apr 2, 2007, 8:36:29 AM (17 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r435 r436  
    508508////////////////////////////////////////////////////////////////////////////
    509509void bncRinex::closeFile() {
     510  QMutexLocker locker(&_mutex);
    510511  _out.close();
    511512  if (!_rnxScriptName.isEmpty()) {
     513
     514    cout << "BEG "
     515         << QTime::currentTime().toString("hh:mm:ss.zzz ").toAscii().data()
     516         << _statID.data() << endl;
     517
    512518#ifdef WIN32
    513519    QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ;
     
    515521    QProcess::startDetached("sh", QStringList() << _rnxScriptName << _fName) ;
    516522#endif
    517   }
    518 }
     523
     524    cout << "END "
     525         << QTime::currentTime().toString("hh:mm:ss.zzz ").toAscii().data()
     526         << _statID.data() << endl;
     527
     528  }
     529}
  • trunk/BNC/bncrinex.h

    r434 r436  
    7171   bool                _reconnectFlag;
    7272   QDate               _skeletonDate;
     73   QMutex              _mutex;
    7374};
    7475
Note: See TracChangeset for help on using the changeset viewer.