X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkVirtualExec.h;h=73010f242481c732f1ca237a09115583ccdf104d;hb=6d739059079dd56b55ab2bb299386a3c198ee3b3;hp=fd856b816f3f7713cd579684571d6b92c2a137ea;hpb=6575a389b71b1b85c79e4444885becb76ecf16e4;p=bbtk.git diff --git a/kernel/src/bbtkVirtualExec.h b/kernel/src/bbtkVirtualExec.h index fd856b8..73010f2 100644 --- a/kernel/src/bbtkVirtualExec.h +++ b/kernel/src/bbtkVirtualExec.h @@ -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;