Changeset 3642 in ntrip
- Timestamp:
- Jan 24, 2012, 11:44:54 AM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpostprocess.cpp
r3629 r3642 42 42 #include "bncpostprocess.h" 43 43 #include "bncsettings.h" 44 #include "pppopt.h" 44 45 45 46 using namespace std; … … 48 49 //////////////////////////////////////////////////////////////////////////// 49 50 t_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(); 54 52 } 55 53 … … 58 56 t_postProcessing::~t_postProcessing() { 59 57 cout << "~t_postProcessing" << endl; 58 delete _opt; 60 59 } 61 60 … … 64 63 void t_postProcessing::run() { 65 64 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; 69 68 70 69 int MAXI = 5; -
trunk/BNC/bncpostprocess.h
r3629 r3642 29 29 #include "bncconst.h" 30 30 31 class t_postInput { 32 public: 33 QString obsFileName; 34 QString navFileName; 35 QString corrFileName; 36 }; 31 class t_pppOpt; 37 32 38 33 class t_postProcessing : public QThread { … … 53 48 54 49 private: 55 t_p ostInput _input;50 t_pppOpt* _opt; 56 51 }; 57 52 -
trunk/BNC/pppopt.cpp
r3636 r3642 77 77 antexFile = settings.value("pppAntex").toString(); 78 78 antennaName = settings.value("pppAntenna").toString(); 79 obsFileName = settings.value("postObsFile").toString(); 80 navFileName = settings.value("postNavFile").toString(); 81 corrFileName = settings.value("postcorrFile").toString(); 79 82 80 83 pppMode = settings.value("pppSPP").toString() == "PPP"; -
trunk/BNC/pppopt.h
r3636 r3642 54 54 QString antexFile; 55 55 QString antennaName; 56 QString obsFileName; 57 QString navFileName; 58 QString corrFileName; 56 59 bool pppMode; 57 60 bool rnxAppend;
Note:
See TracChangeset
for help on using the changeset viewer.