Changeset 3642 in ntrip for trunk/BNC/bncpostprocess.cpp


Ignore:
Timestamp:
Jan 24, 2012, 11:44:54 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpostprocess.cpp

    r3629 r3642  
    4242#include "bncpostprocess.h"
    4343#include "bncsettings.h"
     44#include "pppopt.h"
    4445
    4546using namespace std;
     
    4849////////////////////////////////////////////////////////////////////////////
    4950t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) {
    50   bncSettings settings;
    51   _input.obsFileName  = settings.value("postObsFile").toString();
    52   _input.navFileName  = settings.value("postNavFile").toString();
    53   _input.corrFileName = settings.value("postcorrFile").toString();
     51  _opt = new t_pppOpt();
    5452}
    5553
     
    5856t_postProcessing::~t_postProcessing() {
    5957  cout << "~t_postProcessing" << endl;
     58  delete _opt;
    6059}
    6160
     
    6463void t_postProcessing::run() {
    6564
    66   cout << "obsFile: "  << _input.obsFileName.toAscii().data()  << endl;
    67   cout << "navFile: "  << _input.navFileName.toAscii().data()  << endl;
    68   cout << "corrFile: " << _input.corrFileName.toAscii().data() << endl;
     65  cout << "obsFile: "  << _opt->obsFileName.toAscii().data()  << endl;
     66  cout << "navFile: "  << _opt->navFileName.toAscii().data()  << endl;
     67  cout << "corrFile: " << _opt->corrFileName.toAscii().data() << endl;
    6968
    7069  int MAXI = 5;
Note: See TracChangeset for help on using the changeset viewer.