/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDicomDirImage.h,v $ Language: C++ Date: $Date: 2004/10/25 03:35:19 $ Version: $Revision: 1.11 $ 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 "gdcmDicomDirObject.h" namespace gdcm { //----------------------------------------------------------------------------- class GDCM_EXPORT DicomDirImage : public DicomDirObject { public: DicomDirImage(SQItem *s, TagDocEntryHT *ptagHT); DicomDirImage(TagDocEntryHT *ptagHT); ~DicomDirImage(); void Print(std::ostream &os = std::cout); }; } // end namespace gdcm //----------------------------------------------------------------------------- #endif