X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkExecuter.h;h=71f92d227b10fe8960e0836f7240d8e603d6af18;hb=7cc721b909aa07b7ec6f0eaf97b8cc61de6a15fc;hp=7175c39f495267f28bec308cc6143d66996355c4;hpb=6575a389b71b1b85c79e4444885becb76ecf16e4;p=bbtk.git diff --git a/kernel/src/bbtkExecuter.h b/kernel/src/bbtkExecuter.h index 7175c39..71f92d2 100644 --- a/kernel/src/bbtkExecuter.h +++ b/kernel/src/bbtkExecuter.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkExecuter.h,v $ Language: C++ - Date: $Date: 2008/10/17 08:18:13 $ - Version: $Revision: 1.16 $ + Date: $Date: 2009/06/08 14:50:03 $ + Version: $Revision: 1.18 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -120,6 +120,9 @@ namespace bbtk /// Destroys a black box void Destroy (const std::string &boxName); + /// Clears the currently defined ComplexBlackBox + void Clear(); + /// Connects the output boxOutput to the input boxInput void Connect (const std::string &boxfrom, const std::string &output, @@ -162,8 +165,13 @@ namespace bbtk /// The description string which explains what does the ComplexBox void Description(const std::string & d); + + + + + /// prints the list off the boxes of the current box - void PrintBoxes(); + void PrintHelpListBoxes(); /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path std::string ShowGraph(const std::string &nameblackbox, @@ -177,9 +185,14 @@ namespace bbtk /// Generate a HTML with a gif file with the current pipeline (Graphviz-dot needed). Returns the file path std::string ShowGraphInstances(const std::string &nameblackbox, int detail, int level, bool system_display=true); - /// Description of the actual pipeline - void ShowRelations(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr); + /// Prints help on a black box + void PrintHelpBlackBox(const std::string &nameblackbox, const std::string &detailStr, const std::string &levelStr); + + + + + /// Resets the workspace : destroys all boxes / unloads all packages void Reset();