X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkDicomRTDoseIO.h;h=f233f3a4619cf5f8c4f25d2cd48c43d7cf2914c3;hb=70c994383384fe546b79d96d6edf8b48c4759902;hp=b5679aa133a056b3a9e517a2c4747ba898628883;hpb=acd847ca23ec3c1213e9e97043d4f99445a25b6c;p=clitk.git diff --git a/common/clitkDicomRTDoseIO.h b/common/clitkDicomRTDoseIO.h index b5679aa..f233f3a 100644 --- a/common/clitkDicomRTDoseIO.h +++ b/common/clitkDicomRTDoseIO.h @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #ifndef clitkDicomRTDoseIO_h #define clitkDicomRTDoseIO_h @@ -24,6 +24,9 @@ // itk include #include #include +#if GDCM_MAJOR_VERSION == 2 + #include +#endif // std include #include @@ -44,7 +47,9 @@ public: DicomRTDoseIO():Superclass() { mustWriteHeader = false; +#if GDCM_MAJOR_VERSION < 2 m_GdcmFile=NULL; +#endif } /** Method for creation through the object factory. */ @@ -72,7 +77,11 @@ protected: bool mustWriteHeader; int m_HeaderSize; std::ofstream file; +#if GDCM_MAJOR_VERSION == 2 + gdcm::ImageReader m_GdcmImageReader; +#else gdcm::File *m_GdcmFile; +#endif float m_DoseScaling; }; // end class DicomRTDoseIO