X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=0c1fd35774292797721591d22f5b86af39f60e85;hb=02cee87de17ebbd0920bf78ca470d5360254641e;hp=cca674552782e46cfb93a18930b906dafe26d31c;hpb=0d33ba5ffb1c6beac21f33bd3e3aad67b7608c9d;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index cca67455..0c1fd357 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,36 +1,60 @@ -// gdcmElementSet.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmElementSet.h,v $ + Language: C++ + Date: $Date: 2004/07/19 03:34:12 $ + 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.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" -#include "gdcmDocEntry.h" -#include -typedef std::string TagKey; -typedef std::map TagDocEntryHT; +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(void); - virtual bool AddEntry(gdcmDocEntry *Entry); // add to the H Table + gdcmElementSet(int); + ~gdcmElementSet(); + virtual bool AddEntry(gdcmDocEntry *Entry); + virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove); - virtual void Print (std::ostream &os = std::cout); - -protected: + virtual void Print(std::ostream &os = std::cout); + virtual void Write(FILE *fp, FileType filetype); -private: + /// Accessor to \ref gdcmElementSet::tagHT + // Do not expose this to user (public API) ! + //TagDocEntryHT &GetEntry() { return TagHT; }; +protected: // Variables - /// Hash Table (map), to provide fast access - TagDocEntryHT tagHT; - + TagDocEntryHT TagHT; + +private: + //friend class gdcmDicomDir; }; //-----------------------------------------------------------------------------