]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageResampleBox.cxx
Chasse aux variables non initialisées
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageResampleBox.cxx
index 3a5a7b8af0d792f6ed5119233185703e40052501..9350844d189e6e922e28e3982285fb363024d996 100644 (file)
@@ -3,8 +3,8 @@
 namespace bbPackRecalage
 {
 
-BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage,ResampleBox)
-BBTK_BLACK_BOX_IMPLEMENTATION(ResampleBox,bbtk::AtomicBlackBox);
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage, ResampleBox)
+BBTK_BLACK_BOX_IMPLEMENTATION(ResampleBox, bbtk::AtomicBlackBox);
 void ResampleBox::Process()
 {
     if(bbGetInputIn() != NULL && bbGetInputFactor() != 0)
@@ -24,20 +24,24 @@ void ResampleBox::Process()
                bbSetOutputOut(NULL);
        }
 }
+
 void ResampleBox::bbUserSetDefaultValues()
 {
     bbSetInputIn(NULL);
        bbSetInputFactor(0);
        bbSetOutputOut(NULL);
 }
+
 void ResampleBox::bbUserInitializeProcessing()
 {
        resample = vtkImageResample::New();
 }
+
 void ResampleBox::bbUserFinalizeProcessing()
 {
        resample->Delete(); 
 }
+
 }
 // EO namespace bbPackRecalage