Changeset 436 in ntrip
- Timestamp:
- Apr 2, 2007, 8:36:29 AM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncrinex.cpp ¶
r435 r436 508 508 //////////////////////////////////////////////////////////////////////////// 509 509 void bncRinex::closeFile() { 510 QMutexLocker locker(&_mutex); 510 511 _out.close(); 511 512 if (!_rnxScriptName.isEmpty()) { 513 514 cout << "BEG " 515 << QTime::currentTime().toString("hh:mm:ss.zzz ").toAscii().data() 516 << _statID.data() << endl; 517 512 518 #ifdef WIN32 513 519 QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ; … … 515 521 QProcess::startDetached("sh", QStringList() << _rnxScriptName << _fName) ; 516 522 #endif 517 } 518 } 523 524 cout << "END " 525 << QTime::currentTime().toString("hh:mm:ss.zzz ").toAscii().data() 526 << _statID.data() << endl; 527 528 } 529 } -
TabularUnified trunk/BNC/bncrinex.h ¶
r434 r436 71 71 bool _reconnectFlag; 72 72 QDate _skeletonDate; 73 QMutex _mutex; 73 74 }; 74 75
Note:
See TracChangeset
for help on using the changeset viewer.