]> Creatis software - clitk.git/blobdiff - common/clitkImage2DicomRTStructFilter.h
Remove debug verbose
[clitk.git] / common / clitkImage2DicomRTStructFilter.h
index 749a0be5f9685fbd9ec752e7436943060bf7bada..5eb6ddc7974514d70b8eea40ebfde684df01a972 100644 (file)
@@ -43,16 +43,19 @@ namespace clitk {
     // Set inputs
     itkSetMacro(Input, ImagePointer);
     itkGetConstMacro(Input, ImagePointer);
+    itkSetMacro(StructureSetFilename, std::string);
+    itkSetMacro(DicomFolder, std::string);
+    itkSetMacro(OutputFilename, std::string);
     
     // Run filter
     void Update();    
     
-    // Get output
-    itkGetConstMacro(DicomRTStruct, DicomRTStructPointer);
-
   protected:
     ImagePointer m_Input;
-    DicomRTStructPointer m_DicomRTStruct;
+    std::string m_StructureSetFilename;
+    std::string m_DicomFolder;
+    std::string m_OutputFilename;
+
   };
   //--------------------------------------------------------------------