Changeset 132 in ntrip
- Timestamp:
- Sep 7, 2006, 10:23:27 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r131 r132 35 35 _headerWritten = false; 36 36 readSkeleton(); 37 38 QSettings settings; 39 _rnxScriptName = settings.value("rnxScript").toString(); 40 expandEnvVar(_rnxScriptName); 37 41 } 38 42 … … 89 93 QDate nextDate; 90 94 91 // ////// beg test92 // //if (1) {93 // //hlpStr = datTim.toString("_hh_mm_ss");94 // //nextDate = datTim.date();95 // //nextTime = datTim.time().addSecs(10);96 // //} else97 // ////// end test98 if 95 // //// beg test 96 // if (1) { 97 // hlpStr = datTim.toString("_hh_mm_ss"); 98 // nextDate = datTim.date(); 99 // nextTime = datTim.time().addSecs(10); 100 // } else 101 // //// end test 102 if (intStr == "15 min") { 99 103 char ch = 'A' + datTim.time().hour(); 100 104 hlpStr = ch; … … 298 302 void bncRinex::closeFile() { 299 303 _out.close(); 300 } 304 if (!_rnxScriptName.isEmpty()) { 305 _rnxScript.start(_rnxScriptName, QStringList() << _fName); 306 } 307 } -
trunk/BNC/bncrinex.h
r130 r132 3 3 #define BNCRINEX_H 4 4 5 #include <QProcess> 5 6 #include <QByteArray> 6 7 #include <QDateTime> … … 31 32 bool _headerWritten; 32 33 QDateTime _nextCloseEpoch; 34 QString _rnxScriptName; 35 QProcess _rnxScript; 33 36 }; 34 37
Note:
See TracChangeset
for help on using the changeset viewer.