X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.h;h=573cc64fee4b56622469dc11051355e576c32e7c;hb=31745b8deed4e159cda4f587d1dfd8024ae6b49b;hp=2fc5738c847a7092386249e141b8b375a6f8109e;hpb=73235b749dd3cb7e3552e81f9398b17b9209efa4;p=gdcm.git diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index 2fc5738c..573cc64f 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirImage.h,v $ Language: C++ - Date: $Date: 2005/02/01 13:11:49 $ - Version: $Revision: 1.16 $ + Date: $Date: 2005/10/25 14:52:33 $ + Version: $Revision: 1.17 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -30,11 +30,16 @@ namespace gdcm */ class GDCM_EXPORT DicomDirImage : public DicomDirObject { + gdcmTypeMacro(DicomDirImage); + public: - DicomDirImage(bool empty=false); - ~DicomDirImage(); + static DicomDirImage *New(bool empty=false) {return new DicomDirImage(empty);} void Print(std::ostream &os = std::cout, std::string const &indent = "" ); + +protected: + DicomDirImage(bool empty=false); + ~DicomDirImage(); }; } // end namespace gdcm //-----------------------------------------------------------------------------