X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvImageWriter.cxx;h=4a5714ef36b88eaef60fd64f6de144b270decc91;hb=d2da68d0db9e40a3053d8482aecabf08d6a56cc0;hp=7c09c357f7c708e04273c2f6692776cf5a2a84c3;hpb=1e034c70105f0926939acaaa27ddb46e904ae8bf;p=clitk.git diff --git a/vv/vvImageWriter.cxx b/vv/vvImageWriter.cxx index 7c09c35..4a5714e 100644 --- a/vv/vvImageWriter.cxx +++ b/vv/vvImageWriter.cxx @@ -15,13 +15,15 @@ - 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 -//==================================================================== + +//------------------------------------------------------------------------------ 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