Changeset 4254 in ntrip for trunk/BNC/rinex/reqcanalyze.cpp


Ignore:
Timestamp:
Jun 22, 2012, 9:12:24 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/reqcanalyze.cpp

    r3973 r4254  
    4343#include "bncapp.h"
    4444#include "bncsettings.h"
     45#include "reqcedit.h"
    4546
    4647using namespace std;
     
    5152
    5253  bncSettings settings;
     54
     55  _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
    5356}
    5457
     
    6265void t_reqcAnalyze::run() {
    6366
    64   cout << "Reqc Analyze Running ..." << endl;
     67  t_reqcEdit::initRnxObsFiles(_obsFileNames, _rnxObsFiles);
     68
     69  for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
     70    analyzeFile(_rnxObsFiles[ii]);
     71  }
    6572
    6673  bncApp* app = (bncApp*) qApp;
     
    7380  }
    7481}
     82
     83// 
     84////////////////////////////////////////////////////////////////////////////
     85void t_reqcAnalyze::analyzeFile(const t_rnxObsFile* rnxObsFile) {
     86  cout << rnxObsFile->fileName().toAscii().data() << endl;
     87}
Note: See TracChangeset for help on using the changeset viewer.