Changeset 436 in ntrip for trunk/BNC/bncrinex.cpp


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

* empty log message *

File:
1 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}
Note: See TracChangeset for help on using the changeset viewer.