]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdVectorToString.h
*** empty log message ***
[bbtk.git] / packages / std / src / bbstdVectorToString.h
index 86b6d4ddf063a942a53c8ff5fdac605220eaa7b2..a493ce6bb4a133b6dbfb35a20519c516bf461fb9 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbstdVectorToString.h,v $
   Language:  C++
-  Date:      $Date: 2008/10/17 08:18:27 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2009/05/14 14:43:38 $
+  Version:   $Revision: 1.9 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
 #define __bbstdVectorToString_INCLUDED_h__
 
 #include "bbtkAtomicBlackBox.h"
+#include "bbstd_EXPORT.h"
 
 namespace bbstd
 {
   //=================================================================
   // BlackBox declaration
   template <class T>
-  class VectorToString : public bbtk::AtomicBlackBox
+  class bbstd_EXPORT VectorToString : public bbtk::AtomicBlackBox
   {  
     BBTK_TEMPLATE_BLACK_BOX_INTERFACE(VectorToString,bbtk::AtomicBlackBox,T);
     BBTK_DECLARE_INPUT(In,std::vector<T>);
@@ -48,7 +49,6 @@ namespace bbstd
     BBTK_DECLARE_OUTPUT(Out,std::string);
     BBTK_PROCESS(DoIt);
     void DoIt(); 
-    virtual void bbUserConstructor();
   };
   //=================================================================
 
@@ -66,7 +66,7 @@ namespace bbstd
   BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(VectorToString);
   //=================================================================
 
 //=================================================================
+ //=================================================================
   template <class T>
   void VectorToString<T>::DoIt()
   {
@@ -86,12 +86,21 @@ namespace bbstd
 
   //=================================================================  
   template <class T>
-  void VectorToString<T>::bbUserConstructor()
+  void VectorToString<T>::bbUserSetDefaultValues()
   {
     bbSetInputSeparator(" ");
   }
   //=================================================================
-
+  template <class T>
+  void VectorToString<T>::bbUserInitializeProcessing() 
+  { 
+  }
+  //=================================================================
+  template <class T>
+  void VectorToString<T>::bbUserFinalizeProcessing() 
+  {
+  }
+  //=================================================================
 } // namespace bbstd
 
 #endif //__bbstdVectorToString_INCLUDED_h__