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


Ignore:
Timestamp:
Jan 22, 2012, 5:35:15 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpostprocess.cpp

    r3615 r3625  
    4141#include <iostream>
    4242#include "bncpostprocess.h"
     43#include "bncsettings.h"
    4344
    4445using namespace std;
     
    4647//
    4748////////////////////////////////////////////////////////////////////////////
    48 t_irc postProcessing(const t_postInput& input) {
     49t_irc postProcessingInit(t_postInput& input) {
     50  bncSettings settings;
     51  input.obsFileName  = settings.value("postObsFile").toString();
     52  input.navFileName  = settings.value("postNavFile").toString();
     53  input.corrFileName = settings.value("postcorrFile").toString();
     54
     55  return success;
     56}
     57
     58//
     59////////////////////////////////////////////////////////////////////////////
     60t_irc postProcessingRun(const t_postInput& input) {
    4961
    5062  cout << "obsFile: "  << input.obsFileName.toAscii().data()  << endl;
Note: See TracChangeset for help on using the changeset viewer.