diff c/Parameters.cpp @ 654:045d05cef9d0

updating to c++11 capabilities
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 07 May 2015 16:09:47 +0200
parents 935430b1d408
children f7cf43b5ad3b 6c5ce3ec497e
line wrap: on
line diff
--- a/c/Parameters.cpp	Thu May 07 13:25:31 2015 +0200
+++ b/c/Parameters.cpp	Thu May 07 16:09:47 2015 +0200
@@ -18,6 +18,7 @@
     ("help,h", "displays this help message")
     ("tf", "tracks features")
     ("gf", "groups features")
+    ("loading-time", "report feature and object loading times")
     ("config-file", po::value<string>(&configurationFilename), "configuration file")
     ;
 
@@ -102,6 +103,7 @@
 
     trackFeatures = vm.count("tf")>0;
     groupFeatures = vm.count("gf")>0;
+    loadingTime = vm.count("loading-time")>0;
 
     if (vm.count("help")) {
       cout << cmdLine << endl;