X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=kernel%2Fsrc%2FbbtkBlackBoxInputConnector.h;h=ff25f5138fd558179fe223ad42193f67bf70f71e;hb=f31300e2cc245436a25e7074a26158ac0eed1518;hp=05e414fbb56852cfab38763f417cb8358d1df429;hpb=3928b4ad06b5b5fd142f696f58a7828d064e2883;p=bbtk.git diff --git a/kernel/src/bbtkBlackBoxInputConnector.h b/kernel/src/bbtkBlackBoxInputConnector.h index 05e414f..ff25f51 100644 --- a/kernel/src/bbtkBlackBoxInputConnector.h +++ b/kernel/src/bbtkBlackBoxInputConnector.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkBlackBoxInputConnector.h,v $ Language: C++ - Date: $Date: 2008/12/08 12:53:56 $ - Version: $Revision: 1.5 $ + Date: $Date: 2008/12/11 09:50:35 $ + Version: $Revision: 1.7 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -42,7 +42,6 @@ #define __bbtkBlackBoxInputConnector_h__ #include "bbtkConnection.h" -#include "bbtkChangeTime.h" #include namespace bbtk @@ -65,14 +64,8 @@ namespace bbtk /// The parameter is USELESS today but would be useful if we allow multiple connections on inputs void UnsetConnection(Connection* c); - // IOStatus - void BackwardUpdate(); - - /// Returns the ChangeTime of the output (const) - // const ChangeTime& GetChangeTime() const { return mChangeTime; } - /// Returns the ChangeTime of the output - // ChangeTime& GetChangeTime() { return mChangeTime; } - // bool SetChangeTime(const ChangeTime& t) { return mChangeTime.Set(t); } + // Recursive execution + void RecursiveExecute(); /// Returns the connection plugged into this input (const) Connection* GetConnection() const { return mConnection; } @@ -97,19 +90,6 @@ namespace bbtk /// The status of the input (UPTODATE | MODIFIED | OUTOFDATE) IOStatus mStatus; - // The change time - // ChangeTime mChangeTime; - - /* - /// Returns the TimeStamp - const TimeStamp& GetTimeStamp() const { return mTimeStamp;} - TimeStamp& GetTimeStamp() { return mTimeStamp;} - /// Set the connector to MODIFIED status and increments the time stamp - void SetModified() - { mStatus = MODIFIED; mTimeStamp.Modified(); } - /// The TimeStamp - TimeStamp mTimeStamp; - */ }; }