Index: trunk/BNC/bncmain.cpp
===================================================================
--- trunk/BNC/bncmain.cpp	(revision 3974)
+++ trunk/BNC/bncmain.cpp	(revision 3975)
@@ -123,4 +123,14 @@
   }
 
+#ifdef USE_POSTPROCESSING
+
+  // Post-Processing PPP
+  // -------------------
+  else if (settings.value("pppSPP").toString() == "Post-Processing") {
+    app.setMode(bncApp::batchPostProcessing);
+    t_postProcessing* postProcessing = new t_postProcessing(0);
+    postProcessing->start();
+  }
+
   // Post-Processing reqc edit
   // -------------------------
@@ -130,4 +140,14 @@
     reqcEdit->start();
   }
+
+  // Post-Processing reqc analyze
+  // ----------------------------
+  else if (settings.value("reqcAction").toString() == "Analyze") {
+    app.setMode(bncApp::batchPostProcessing);
+    t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(0);
+    reqcAnalyze->start();
+  }
+
+#endif
 
   // Non-Interactive (data gathering)
