X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=df2f32a822f2bf0e65b149357acb10b3bdf81fc6;hb=0fc486652e88490f7344439111750eb9dcaf7a29;hp=7d7dd19a059b33b061e7c9940890a5522d72463b;hpb=0b36f4932e894a1dde4a80e614755816b4b29218;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 7d7dd19a..df2f32a8 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,21 +1,64 @@ -// gdcmElementSet.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmElementSet.h,v $ + Language: C++ + Date: $Date: 2004/09/10 14:32:04 $ + Version: $Revision: 1.15 $ + + 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); -protected: + /// Accessor to \ref gdcmElementSet::TagHT + // Do not expose this to user (public API) ! + // I re-add it temporaryly JPRx + TagDocEntryHT &GetEntry() { return TagHT; }; +protected: +// Variables + /// Hash Table (map), to provide fast access + TagDocEntryHT TagHT; + private: - + //friend class gdcmDicomDir; }; - //----------------------------------------------------------------------------- #endif