X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=0c58214d7de0ab18104709fec7e5fdc6eb28db2c;hb=8a806c5653d7832005f2c6f658cf8b5fa612f656;hp=7d7dd19a059b33b061e7c9940890a5522d72463b;hpb=0b36f4932e894a1dde4a80e614755816b4b29218;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 7d7dd19a..0c58214d 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,21 +1,69 @@ -// gdcmElementSet.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmElementSet.h,v $ + Language: C++ + Date: $Date: 2004/09/17 13:11:16 $ + Version: $Revision: 1.16 $ + + 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(int); + ~gdcmElementSet(); + virtual bool AddEntry(gdcmDocEntry *Entry); + bool RemoveEntry(gdcmDocEntry *EntryToRemove); + bool RemoveEntryNoDestroy(gdcmDocEntry *EntryToRemove); + + virtual void Print(std::ostream &os = std::cout); + virtual void Write(FILE *fp, FileType filetype); + + /// Accessor to \ref TagHT + // Do not expose this to user (public API) ! + // I re-add it temporaryly JPRx + TagDocEntryHT &GetEntry() { return TagHT; }; -protected: +protected: +// Variables + /// Hash Table (map), to provide fast access + TagDocEntryHT TagHT; + private: + /// Just for following ::GetTagHT() + friend class gdcmDocument; + /// Accessor to \ref TagHT + TagDocEntryHT* GetTagHT() { return &TagHT; }; }; - //----------------------------------------------------------------------------- #endif