]> Creatis software - clitk.git/blobdiff - tools/clitkZeroVF.cxx
Reformatted using new coding style
[clitk.git] / tools / clitkZeroVF.cxx
index 99013210e456bd3780aa88e6cb578684badbdf28..65f46c4fb0277cd6cbfb01a328704a41852de9e8 100644 (file)
@@ -1,7 +1,7 @@
 /*=========================================================================
   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
-  Authors belong to: 
+  Authors belong to:
   - University of LYON              http://www.universite-lyon.fr/
   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
@@ -22,9 +22,9 @@
  * @file   clitkZeroVF.cxx
  * @author Joel Schaerer
  * @date   July 20  10:14:53 2007
- * 
+ *
  * @brief  Creates a VF filled with zeros the size of the input VF
- * 
+ *
  */
 
 // clitk include
 
 int main( int argc, char *argv[] )
 {
-  
+
   // Init command line
   GGO(clitkZeroVF, args_info);
   CLITK_INIT;
-  
+
   //Creation of the generic filter
   clitk::ZeroVFGenericFilter::Pointer zeroVFGenericFilter= clitk::ZeroVFGenericFilter::New();
 
@@ -49,7 +49,7 @@ int main( int argc, char *argv[] )
   zeroVFGenericFilter->SetVerbose(args_info.verbose_flag);
 
   //update
-  zeroVFGenericFilter->Update();  
+  zeroVFGenericFilter->Update();
   return EXIT_SUCCESS;
 }
 #endif