Changeset 3826 in ntrip
- Timestamp:
- Apr 11, 2012, 10:44:32 AM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r3740 r3826 116 116 DEFINES += USE_POSTPROCESSING 117 117 HEADERS += rinex/bncpostprocess.h rinex/rnxobsfile.h \ 118 rinex/rnxnavfile.h rinex/corrfile.h 118 rinex/rnxnavfile.h rinex/corrfile.h \ 119 rinex/teqcedit.h rinex/teqcanalyze.h 119 120 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \ 120 rinex/rnxnavfile.cpp rinex/corrfile.cpp 121 rinex/rnxnavfile.cpp rinex/corrfile.cpp \ 122 rinex/teqcedit.cpp rinex/teqcanalyze.cpp 121 123 } 122 124 -
trunk/BNC/bncwindow.cpp
r3825 r3826 65 65 #ifdef USE_POSTPROCESSING 66 66 # include "rinex/bncpostprocess.h" 67 # include "rinex/teqcedit.h" 68 # include "rinex/teqcanalyze.h" 67 69 #endif 68 70 … … 2515 2517 void bncWindow::startPostProcessingTeqc() { 2516 2518 #ifdef USE_POSTPROCESSING 2517 _runningPostProcessingTeqc = false; // TODO2519 _runningPostProcessingTeqc = true; 2518 2520 enableStartStop(); 2519 QMessageBox::information(this, "Information", 2520 "Teqc-Processing Not Yet Implemented"); 2521 if (_teqcActionComboBox->currentText() == "Analyze") { 2522 t_teqcAnalyze* teqcAnalyze = new t_teqcAnalyze(this); 2523 connect(teqcAnalyze, SIGNAL(finished()), 2524 this, SLOT(slotFinishedPostProcessingTeqc())); 2525 teqcAnalyze->start(); 2526 } 2527 else { 2528 t_teqcEdit* teqcEdit = new t_teqcEdit(this); 2529 connect(teqcEdit, SIGNAL(finished()), 2530 this, SLOT(slotFinishedPostProcessingTeqc())); 2531 teqcEdit->start(); 2532 } 2521 2533 #else 2522 2534 QMessageBox::information(this, "Information",
Note:
See TracChangeset
for help on using the changeset viewer.