X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=filters%2FclitkImageConvertGenericFilter.h;h=8bbca3c0890bbf5ea8093094b7fa52417d34e596;hb=f6d1d7ca3b026997694d41f3afe1d16de2d06927;hp=c10cf7b3847ed51f35004f9be2f107b0fd2484bf;hpb=0083c3fb2c66812489631c7551709d121de51625;p=clitk.git diff --git a/filters/clitkImageConvertGenericFilter.h b/filters/clitkImageConvertGenericFilter.h index c10cf7b..8bbca3c 100644 --- a/filters/clitkImageConvertGenericFilter.h +++ b/filters/clitkImageConvertGenericFilter.h @@ -1,3 +1,20 @@ +/*========================================================================= + Program: vv http://www.creatis.insa-lyon.fr/rio/vv + + 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 + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the copyright notices for more information. + + It is distributed under dual licence + + - BSD See included LICENSE.txt file + - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +======================================================================-====*/ #ifndef CLITKIMAGECONVERTGENERICFILTER_H #define CLITKIMAGECONVERTGENERICFILTER_H /** @@ -35,6 +52,9 @@ namespace clitk { // Members functions void SetOutputPixelType(std::string p) { mOutputPixelTypeName = p; } + bool IsWarningOccur() { return mWarningOccur; } + std::string & GetWarning() { return mWarning; } + void EnableDisplayWarning(bool b) { mDisplayWarning = b; } //-------------------------------------------------------------------- // Main function called each time the filter is updated @@ -44,6 +64,9 @@ namespace clitk { protected: template void InitializeImageType(); std::string mOutputPixelTypeName; + std::string mWarning; + bool mWarningOccur; + bool mDisplayWarning; template void UpdateWithOutputType();