]> Creatis software - bbtk.git/commitdiff
Clean code
authorEduardo DAVILA <davila@ei-ed-606.univ-lyon1.fr>
Mon, 27 Jan 2020 09:53:08 +0000 (10:53 +0100)
committerEduardo DAVILA <davila@ei-ed-606.univ-lyon1.fr>
Mon, 27 Jan 2020 09:53:08 +0000 (10:53 +0100)
packages/vtk/src/bbvtkTemporalPicker.cxx
packages/vtk/src/bbvtkTemporalPicker.h

index 4623084756dc99a685102535e5d30ac3445153db..37901c76fdb72462b7f354dd2361d22c60108a90 100644 (file)
@@ -56,7 +56,6 @@ void TemporalPicker::Process()
 //    * TYPE is the C++ type of the input/output
 //      (the one provided in the attribute 'type' of the tag 'input')
 
-       
        std::vector<double> result;
        if (bbGetInputIn()!=NULL)
        {
@@ -138,7 +137,6 @@ void TemporalPicker::Process()
        } else {// bbGetInputIn
                printf("ERROR:  Missing Input:In vtkImageData* in TemporalPicker Box..\n ");
        } // bbGetInputIn
-
        bbSetOutputOut(result);
 }
 //===== 
index f41e64252f75ae0d3f99f6dbf25ede0b44b15529..13b918f94e193e5dd3e5e3e482ef51375ff3dbda 100644 (file)
@@ -25,9 +25,6 @@
  # ------------------------------------------------------------------------ */
 
 
-//=====
-// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
-//===== 
 #ifndef __bbvtkTemporalPicker_h_INCLUDED__
 #define __bbvtkTemporalPicker_h_INCLUDED__
 #include "bbvtk_EXPORT.h"
 
 #include "vtkImageData.h"
 
-
 namespace bbvtk
 {
 
-class bbvtk_EXPORT TemporalPicker
- : 
-   public bbtk::AtomicBlackBox
+class bbvtk_EXPORT TemporalPicker : public bbtk::AtomicBlackBox
 {
   BBTK_BLACK_BOX_INTERFACE(TemporalPicker,bbtk::AtomicBlackBox);
-//===== 
-// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
-//===== 
     BBTK_DECLARE_INPUT(In,vtkImageData*);
     BBTK_DECLARE_INPUT(SizeRegion,int);
     BBTK_DECLARE_INPUT(Point,std::vector<int>);
        BBTK_DECLARE_OUTPUT(Out,std::vector<double>);
   BBTK_PROCESS(Process);
   void Process();
-//===== 
-// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
-//===== 
 };
 
 BBTK_BEGIN_DESCRIBE_BLACK_BOX(TemporalPicker,bbtk::AtomicBlackBox);
@@ -69,9 +57,6 @@ BBTK_BEGIN_DESCRIBE_BLACK_BOX(TemporalPicker,bbtk::AtomicBlackBox);
        BBTK_INPUT(TemporalPicker,Point,"Point [x,y]",std::vector<int>,"");
        BBTK_OUTPUT(TemporalPicker,Out,"Output vector with Z information",std::vector<double>,"");
 BBTK_END_DESCRIBE_BLACK_BOX(TemporalPicker);
-//===== 
-// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
-//===== 
 }
 // EO namespace bbvtk