X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.h;h=b912c3ad8ab685b8b6526b7c00cac9b6c00c961b;hb=c460dc75a10d96fc38011db90fae5bcd8649b743;hp=719c36842f62774298aa0d478fe1c893983e65c6;hpb=399e06b19e761cf5a296a4ac091d653bbf99abe1;p=gdcm.git diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index 719c3684..b912c3ad 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -1,19 +1,36 @@ -// gdcmDicomDirImage.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirImage.h,v $ + Language: C++ + Date: $Date: 2004/09/23 10:47:10 $ + Version: $Revision: 1.8 $ + + 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.htm 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" //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject { +class GDCM_EXPORT gdcmDicomDirImage : public gdcmDicomDirObject +{ public: - gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end, - TagHeaderEntryHT *ptagHT, ListTag *plistEntries); + gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT); + gdcmDicomDirImage(TagDocEntryHT *ptagHT); - ~gdcmDicomDirImage(void); + ~gdcmDicomDirImage(); - virtual void Print(std::ostream &os = std::cout); + virtual void Print(std::ostream &os = std::cout); }; //-----------------------------------------------------------------------------