X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkBlackBoxOutputConnector.h;h=80559c20101c9570fbdea8a04e565b9049ac24f3;hb=e97caf8b03ac7cd466a36d68dda8b762d4f4a596;hp=fdfb5eb0bb32ad6dd079d3b84609f55a1d462e8d;hpb=3ad62c24e0e183cd68aa9ef19321bd88b60cda05;p=bbtk.git diff --git a/kernel/src/bbtkBlackBoxOutputConnector.h b/kernel/src/bbtkBlackBoxOutputConnector.h index fdfb5eb..80559c2 100644 --- a/kernel/src/bbtkBlackBoxOutputConnector.h +++ b/kernel/src/bbtkBlackBoxOutputConnector.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkBlackBoxOutputConnector.h,v $ Language: C++ - Date: $Date: 2008/12/08 13:05:59 $ - Version: $Revision: 1.6 $ + Date: $Date: 2008/12/15 09:04:46 $ + Version: $Revision: 1.8 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -115,11 +115,6 @@ namespace bbtk /// Adds the function f to the list of functions to call when /// the output changes. - /// f is of type ChangeCallbackType which is basically: - /// void (*ChangeCallbackType)(BlackBoxOutputConnector*) - /// To pass a member function 'f' of an instance 'c' of a class 'C' - /// as callback you have to 'bind' it, i.e. call: - /// AddChangeObserver ( boost::bind( &C::f , c, _1 ) ); void AddChangeObserver(OutputChangeCallbackType f); /// Removes the function f from the list of functions to call when @@ -132,11 +127,9 @@ namespace bbtk ConnectionVector mConnection; /// The status of the output IOStatus mStatus; - + /// The output changed signal BlackBox::OutputChangeSignalType mChangeSignal; - // The change time -// ChangeTime mChangeTime; }; }