]> Creatis software - clitk.git/blobdiff - filters/clitkImageConvertGenericFilter.h
add seg folder
[clitk.git] / filters / clitkImageConvertGenericFilter.h
index c10cf7b3847ed51f35004f9be2f107b0fd2484bf..8bbca3c0890bbf5ea8093094b7fa52417d34e596 100644 (file)
@@ -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<unsigned int Dim> void InitializeImageType();
     std::string mOutputPixelTypeName;
+    std::string mWarning;
+    bool mWarningOccur;
+    bool mDisplayWarning;
 
     template<class InputImageType, class OutputPixelType> void UpdateWithOutputType();