]> Creatis software - crea.git/blobdiff - appli/creaNewProject/NewProject/bbtk_mySamplePackage_PKG/src/bbmySamplePackagemySampleBoxWithITK.cxx
no message
[crea.git] / appli / creaNewProject / NewProject / bbtk_mySamplePackage_PKG / src / bbmySamplePackagemySampleBoxWithITK.cxx
index 1e2d1827233a83f154f4d30fa5504558c060aec0..fc9cd4873265d9761e4f96f7e8ea232727d5fa88 100644 (file)
@@ -7,30 +7,21 @@ namespace bbmySamplePackage
 BBTK_ADD_BLACK_BOX_TO_PACKAGE(mySamplePackage,mySampleBoxWithITK)
 BBTK_BLACK_BOX_IMPLEMENTATION(mySampleBoxWithITK,bbtk::AtomicBlackBox);
 
-void mySampleBoxWithITK::Process()
-{
-
-// THE MAIN PROCESSING METHOD BODY
-//   Here we simply set the input 'In' value to the output 'Out'
-//   And print out the output value
-// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
-//    void bbSet{Input|Output}NAME(const TYPE&)
-//    const TYPE& bbGet{Input|Output}NAME() const 
-//    Where :
-//    * NAME is the name of the input/output
-//      (the one provided in the attribute 'name' of the tag 'input')
-//    * TYPE is the C++ type of the input/output
-//      (the one provided in the attribute 'type' of the tag 'input')
-    bbSetOutputOut( bbGetInputIn() );
-    std::cout << "Output value = " <<bbGetOutputOut() << std::endl; 
-}
-
+//
+// The method     void mySampleBoxWithITK::Process()
+// have a Template mechanisme and is implemented in the .h file
+//
+       
+       
 void mySampleBoxWithITK::bbUserSetDefaultValues()
 {
 
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
-   bbSetInputIn(0);
+       
+       mOutput = 0;
+       bbSetInputLower(200);
+       bbSetInputUpper(1200);
 }
 
 void mySampleBoxWithITK::bbUserInitializeProcessing()