X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=a7b8b672b4976e3f09d816c05f80b2d8092b3f32;hb=65f457a97152fce4878d7aa20ec02f4ccda20705;hp=cd3bbd7d550c09847d8fa090fb06322229d17670;hpb=5154dc89c0a2a565e9e79024ba8910f405279dd2;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index cd3bbd7d..a7b8b672 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,23 +1,59 @@ -// gdcmElementSet.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmElementSet.h,v $ + Language: C++ + Date: $Date: 2004/06/22 13:47:33 $ + Version: $Revision: 1.9 $ + + 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 GDCMELEMENTSET_H #define GDCMELEMENTSET_H +#include +#include +#include "gdcmCommon.h" +#include "gdcmDocEntrySet.h" + +class gdcmValEntry; +class gdcmBinEntry; +class gdcmSeqEntry; + + +typedef std::map TagDocEntryHT; + //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet +class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet { public: - gdcmElementSet(void); + gdcmElementSet(int); ~gdcmElementSet(void); - -protected: + virtual bool AddEntry(gdcmDocEntry *Entry); + virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove); -private: + virtual void Print(std::ostream &os = std::cout); + virtual void Write(FILE *fp, FileType filetype); + +protected: +// Variables + /// Hash Table (map), to provide fast access + TagDocEntryHT tagHT; + +private: + }; - //----------------------------------------------------------------------------- #endif