]> Creatis software - clitk.git/blobdiff - tools/clitkComposeVFGenericFilter.h
Debug RTStruct conversion with empty struc
[clitk.git] / tools / clitkComposeVFGenericFilter.h
old mode 100755 (executable)
new mode 100644 (file)
index c3e8bd3..4d9d9f5
@@ -51,6 +51,8 @@ namespace clitk
     void SetInput1(const std::string m){m_InputName1=m;}
     void SetInput2(const std::string m){m_InputName2=m;}
     void SetOutput(const std::string m){m_OutputName=m;}
+    void SetLikeImage(const std::string like){m_LikeImage=like;}
+    void SetInputType(int t){m_Type=t;}
     void SetVerbose(const bool m){m_Verbose=m;}
  
 
@@ -65,10 +67,13 @@ namespace clitk
     //Templated members
     template<unsigned int Dimension> void UpdateWithDim(std::string PixelType);
     template<unsigned int Dimension, class PixelType> void UpdateWithDimAndPixelType(); 
-
+    
     std::string m_InputName1;
     std::string m_InputName2;
     std::string m_OutputName;
+    std::string m_LikeImage;
+    int m_Type;
+    
     bool m_Verbose;
   
   };