]> Creatis software - clitk.git/blobdiff - vv/vvImageWriter.cxx
Remove old MaximumIntensityProjection (menu and callback)
[clitk.git] / vv / vvImageWriter.cxx
index 7c09c357f7c708e04273c2f6692776cf5a2a84c3..4a5714ef36b88eaef60fd64f6de144b270decc91 100644 (file)
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
 ======================================================================-====*/
-#ifndef vvImageWriter_CXX
-#define vvImageWriter_CXX
+#ifndef VVIMAGEWRITER_CXX
+#define VVIMAGEWRITER_CXX
+
 #include "vvImageWriter.h"
 #include "vvImageWriter.txx"
 
 #include <string.h>
-//====================================================================
+
+//------------------------------------------------------------------------------
 vvImageWriter::vvImageWriter()
 {
   mImage = NULL;
@@ -29,15 +31,17 @@ vvImageWriter::vvImageWriter()
   mLastError = "";
   mUseAnObserver = false;
 }
-//====================================================================
+//------------------------------------------------------------------------------
+
 
-//====================================================================
+//------------------------------------------------------------------------------
 vvImageWriter::~vvImageWriter()
 {
 }
-//====================================================================
+//------------------------------------------------------------------------------
 
-//====================================================================
+
+//------------------------------------------------------------------------------
 void vvImageWriter::Update(int dim,std::string OutputPixelType)
 {
   //CALL_FOR_ALL_DIMS(dim,UpdateWithDim,inputPixelType);
@@ -50,14 +54,15 @@ void vvImageWriter::Update(int dim,std::string OutputPixelType)
   else
     std::cerr << "dim not know in Update ! " << std::endl;
 }
-//====================================================================
+//------------------------------------------------------------------------------
+
 
-//====================================================================
+//------------------------------------------------------------------------------
 void vvImageWriter::SetOutputFileName(std::string filename)
 {
   mOutputFilename = filename;
 }
-//====================================================================
+//------------------------------------------------------------------------------
 
 #endif