Changeset 3841 in ntrip for trunk/BNC/rinex
- Timestamp:
- Apr 12, 2012, 12:22:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/teqcedit.cpp
r3840 r3841 51 51 bncSettings settings; 52 52 53 _obsFileNames = settings.value("teqcObsFile").toString().split(" '", QString::SkipEmptyParts);53 _obsFileNames = settings.value("teqcObsFile").toString().split(",", QString::SkipEmptyParts); 54 54 } 55 55 … … 63 63 void t_teqcEdit::run() { 64 64 65 cout << " Teqc Edit Running ..." << endl;65 cout << "t_teqcEdit::run" << endl; 66 66 67 67 QStringListIterator it(_obsFileNames); 68 68 while (it.hasNext()) { 69 t_rnxObsFile* rnxObsFile = new t_rnxObsFile(it.next()); 69 QString fileName = it.next(); 70 cout << "file " << fileName.toAscii().data() << endl; 71 t_rnxObsFile* rnxObsFile = new t_rnxObsFile(fileName); 70 72 _rnxObsFiles.append(rnxObsFile); 71 73 } … … 73 75 t_rnxObsFile::earlierStartTime); 74 76 77 //// beg test 78 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) { 79 t_rnxObsFile* rnxObsFile = _rnxObsFiles[ii]; 80 cout << rnxObsFile->fileName().toAscii().data() << " " 81 << rnxObsFile->startTime().datestr() << " " 82 << rnxObsFile->startTime().timestr() << endl; 83 } 84 //// end test 85 75 86 emit finished(); 76 87 deleteLater();
Note:
See TracChangeset
for help on using the changeset viewer.