]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkBlackBoxOutputConnector.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkBlackBoxOutputConnector.h
index d94b481dfcc59a4eb5f4e530cb93549a717906b4..80559c20101c9570fbdea8a04e565b9049ac24f3 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkBlackBoxOutputConnector.h,v $
   Language:  C++
-  Date:      $Date: 2008/12/08 12:54:06 $
-  Version:   $Revision: 1.5 $
+  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;
   };
   
 }