[cig-commits] r11537 - cs/benchmark/cigma/trunk/src

luis at geodynamics.org luis at geodynamics.org
Mon Mar 24 09:27:35 PDT 2008


Author: luis
Date: 2008-03-24 09:27:35 -0700 (Mon, 24 Mar 2008)
New Revision: 11537

Modified:
   cs/benchmark/cigma/trunk/src/CommandSet.cpp
Log:
Restore all commands in CommandSet


Modified: cs/benchmark/cigma/trunk/src/CommandSet.cpp
===================================================================
--- cs/benchmark/cigma/trunk/src/CommandSet.cpp	2008-03-24 16:27:33 UTC (rev 11536)
+++ cs/benchmark/cigma/trunk/src/CommandSet.cpp	2008-03-24 16:27:35 UTC (rev 11537)
@@ -6,9 +6,10 @@
 #include "HelpCmd.h"
 #include "ListCmd.h"
 #include "CubeCmd.h"
-//#include "CompareCmd.h"
-//#include "ExtractCmd.h"
-//#include "EvalCmd.h"
+#include "ExtractCmd.h"
+#include "SearchCmd.h"
+#include "EvalCmd.h"
+#include "CompareCmd.h"
 
 cigma::CommandSet::CommandSet()
 {
@@ -31,12 +32,13 @@
 
     /* assemble set of commands */
     addCommand(help);
-    //addCommand(new CompareCmd());
+    //addCommand(new SkelCmd());
     addCommand(new ListCmd());
     addCommand(new CubeCmd());
-    //addCommand(new ExtractCmd());
-    //addCommand(new EvalCmd());
-    //addCommand(new SkelCmd());
+    addCommand(new ExtractCmd());
+    addCommand(new SearchCmd());
+    addCommand(new EvalCmd());
+    addCommand(new CompareCmd());
 
     /* once assembled, pass set of commands to help command */
     help->setCommandSet(this);



More information about the cig-commits mailing list