X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.h;h=59a9cbc6cc50bd23b7c0d1887348373116c69cfc;hb=40b909789581894e57a0d8f22d6f1f91f55e7f84;hp=719c36842f62774298aa0d478fe1c893983e65c6;hpb=399e06b19e761cf5a296a4ac091d653bbf99abe1;p=gdcm.git diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index 719c3684..59a9cbc6 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -1,20 +1,39 @@ -// gdcmDicomDirImage.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirImage.h,v $ + Language: C++ + Date: $Date: 2004/10/12 04:35:44 $ + Version: $Revision: 1.10 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #ifndef GDCMDICOMIMAGE_H #define GDCMDICOMIMAGE_H -#include "gdcmObject.h" +#include "gdcmDicomDirObject.h" +namespace gdcm +{ //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject { +class GDCM_EXPORT DicomDirImage : public DicomDirObject +{ public: - gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end, - TagHeaderEntryHT *ptagHT, ListTag *plistEntries); + DicomDirImage(SQItem *s, TagDocEntryHT *ptagHT); + DicomDirImage(TagDocEntryHT *ptagHT); - ~gdcmDicomDirImage(void); + ~DicomDirImage(); - virtual void Print(std::ostream &os = std::cout); + virtual void Print(std::ostream &os = std::cout); }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif