]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdExecSystemCommand.h
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdExecSystemCommand.h
index 9f070b80904fbdcc2af947effab0f2c2f75f45f4..281807c613f5a92dc2a0dbaaf6857358b47b604a 100755 (executable)
@@ -8,27 +8,25 @@ namespace bbstd
 
   class ExecSystemCommand
     : 
-    public bbtk::AtomicBlackBox
+  public bbtk::AtomicBlackBox
   {
+  public:
     BBTK_BLACK_BOX_INTERFACE(ExecSystemCommand,bbtk::AtomicBlackBox);
-    BBTK_DECLARE_INPUT(In,std::string);
-    //    BBTK_DECLARE_OUTPUT(Out,std::string);
+    BBTK_DECLARE_INPUT(In,std::string)
     BBTK_PROCESS(DoProcess);
     void DoProcess();
 
   protected:
     virtual void bbUserConstructor();
-
   };
 
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(ExecSystemCommand,bbtk::AtomicBlackBox);
   BBTK_NAME("ExecSystemCommand");
   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
-  BBTK_DESCRIPTION("Execute bbi commands");
-  BBTK_INPUT(ExecSystemCommand,In,"bbi commands separated by ';' , use '' to indicate strings ex. help 'graph' ",std::string,"");  
-  //  BBTK_OUTPUT(ExecSystemCommand,Out,"Concatenated string",std::string);
+  BBTK_DESCRIPTION("Executes system (O.S.) commands");
+  BBTK_INPUT(ExecSystemCommand,In,"system (O.S.) commands separated by ';' , use '' to indicate strings ex. help 'graph' ",std::string,"");  
   BBTK_END_DESCRIBE_BLACK_BOX(ExecSystemCommand);
-  
+
 } // EO namespace bbstd
 
 #endif //  __bbstdExecSystemCommand_h_INCLUDED__