X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkBlackBox.h;h=abe50e062a42c5c6a59e45fc63ef5a6ffb3f914f;hb=63005ec659612d567c00bfbb9ecbd62566a3217d;hp=1c809634ca804e83c65fb75ad934a48115a03c2d;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkBlackBox.h b/kernel/src/bbtkBlackBox.h index 1c80963..abe50e0 100644 --- a/kernel/src/bbtkBlackBox.h +++ b/kernel/src/bbtkBlackBox.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkBlackBox.h,v $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/02/20 16:05:38 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See doc/license.txt or @@ -286,7 +286,7 @@ bool reaction = true); /// /// First checks that re-processing is needed (either Status==MODIFIED or InputProcessMode==Always) /// then : - /// - updates its inputs by calling bbUpdateInputs (which recursively calls bbBackwardUpdate on amont boxes) + /// - updates its inputs by calling bbUpdateInputs (which recursively calls bbBackwardUpdate on upstream boxes) /// - calls bbCreateWidget /// - calls bbProcess which is the user callback which does the actual processing /// - calls bbUpdateChildren @@ -312,12 +312,12 @@ bool reaction = true); //================================================================== /// Updates the BlackBox inputs and returns the final status of the inputs /// (==UPTODATE iff all inputs are UPTODATE) - // If excludeParent == true then excludes the amont box connected to input 'Parent' from recursive update + // If excludeParent == true then excludes the upstream box connected to input 'Parent' from recursive update IOStatus bbUpdateInputs(bool excludeParent=false); //================================================================== //================================================================== - /// Updates the pipeline in amont-aval direction along the "Child"-"Parent" connections only. + /// Updates the pipeline in upstream-downstream direction along the "Child"-"Parent" connections only. /// Does nothing here. Overloaded in WxContainerBlackbox //virtual void bbUpdateChildren( Connection* caller ) { } //==================================================================