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

luis at geodynamics.org luis at geodynamics.org
Mon Jan 14 21:28:21 PST 2008


Author: luis
Date: 2008-01-14 21:28:20 -0800 (Mon, 14 Jan 2008)
New Revision: 9047

Modified:
   cs/benchmark/cigma/trunk/src/CommandSet.cpp
Log:
Updated set of commands in CommandSet::initialize()

Modified: cs/benchmark/cigma/trunk/src/CommandSet.cpp
===================================================================
--- cs/benchmark/cigma/trunk/src/CommandSet.cpp	2008-01-15 05:28:19 UTC (rev 9046)
+++ cs/benchmark/cigma/trunk/src/CommandSet.cpp	2008-01-15 05:28:20 UTC (rev 9047)
@@ -7,6 +7,7 @@
 #include "ExtractCmd.h"
 #include "EvalCmd.h"
 #include "CompareCmd.h"
+#include "CubeCmd.h"
 
 cigma::CommandSet::CommandSet()
 {
@@ -29,10 +30,11 @@
 
     /* assemble set of commands */
     addCommand(help);
+    addCommand(new CompareCmd());
     addCommand(new ExtractCmd());
+    addCommand(new CubeCmd());
     addCommand(new EvalCmd());
-    addCommand(new CompareCmd());
-    addCommand(new SkelCmd());
+    //addCommand(new SkelCmd());
 
     /* once assembled, pass set of commands to help command */
     help->setCmdMap(&commands);



More information about the cig-commits mailing list