X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirImage.h;h=59a9cbc6cc50bd23b7c0d1887348373116c69cfc;hb=933fb20f37f5f900c53c59b2a739e18303bd60d8;hp=835167e6227eee6b34b111f58174d6987ee11ff2;hpb=55d77e0913ff360d639af1841c70d14dc8687584;p=gdcm.git diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index 835167e6..59a9cbc6 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -1,27 +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); - -/** - * \ingroup gdcmDicomDirImage - * \brief TODO - */ - gdcmDicomDirImage* NewImage(void); - }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif