]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkVirtualExec.h
no message
[bbtk.git] / kernel / src / bbtkVirtualExec.h
index fd856b816f3f7713cd579684571d6b92c2a137ea..73010f242481c732f1ca237a09115583ccdf104d 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkVirtualExec.h,v $
   Language:  C++
-  Date:      $Date: 2008/10/17 08:18:14 $
-  Version:   $Revision: 1.17 $
+  Date:      $Date: 2009/06/08 14:50:04 $
+  Version:   $Revision: 1.19 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -127,6 +127,9 @@ namespace bbtk
     /// Destroys a black box
     virtual void Destroy (const std::string &boxName) = 0;
 
+    /// Clears the currently defined ComplexBlackBox
+    virtual void Clear() = 0;
+
     /// Connects the output boxOutput to the input boxInput
     virtual void Connect (const std::string &boxfrom,
                  const std::string &output,
@@ -169,10 +172,10 @@ namespace bbtk
     /// The description string which explains what does the ComplexBox
     virtual void Description(const std::string &d) = 0;
 
-    /// prints the list off the boxes of the current box
-    virtual void PrintBoxes() = 0;
+    /// prints the list of the boxes of the current box
+    virtual void PrintHelpListBoxes() = 0;
 
-   /// Generate a HTML with a gif file with the actual pipeline (Graphviz-dot needed). Returns the file path
+   /// Generate a HTML file with a gif file with the actual pipeline (Graphviz-dot needed). Returns the file path
     virtual std::string ShowGraph(const std::string &nameblackbox, 
                          const std::string &detailStr, 
                          const std::string &levelStr,
@@ -184,8 +187,8 @@ namespace bbtk
    /// Generate a HTML with a gif file with the actual pipeline (Graphviz-dot needed). Returns the file path
     virtual std::string ShowGraphInstances(const std::string &nameblackbox, int detail, int level, bool system_display=true) = 0;
 
-    /// Description of the actual pipeline
-    virtual void ShowRelations(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr) = 0;
+    /// Prints help on a black box
+    virtual void PrintHelpBlackBox(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr) = 0;
     
     virtual void Reset() = 0;