Changeset 3975 in ntrip for trunk/BNC/bncmain.cpp


Ignore:
Timestamp:
Apr 20, 2012, 8:28:36 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmain.cpp

    r3974 r3975  
    123123  }
    124124
     125#ifdef USE_POSTPROCESSING
     126
     127  // Post-Processing PPP
     128  // -------------------
     129  else if (settings.value("pppSPP").toString() == "Post-Processing") {
     130    app.setMode(bncApp::batchPostProcessing);
     131    t_postProcessing* postProcessing = new t_postProcessing(0);
     132    postProcessing->start();
     133  }
     134
    125135  // Post-Processing reqc edit
    126136  // -------------------------
     
    130140    reqcEdit->start();
    131141  }
     142
     143  // Post-Processing reqc analyze
     144  // ----------------------------
     145  else if (settings.value("reqcAction").toString() == "Analyze") {
     146    app.setMode(bncApp::batchPostProcessing);
     147    t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
     148    reqcAnalyze->start();
     149  }
     150
     151#endif
    132152
    133153  // Non-Interactive (data gathering)
Note: See TracChangeset for help on using the changeset viewer.