X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=0c58214d7de0ab18104709fec7e5fdc6eb28db2c;hb=89763e8094465640a31f98815a3448e1e7d6ff3f;hp=826b85cf32d27375d488bc41aacf9ec81fb2e292;hpb=8e1fe98f7659cec85bcbce8551e28f8e45971370;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 826b85cf..0c58214d 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,4 +1,20 @@ -// 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 @@ -8,7 +24,12 @@ #include "gdcmCommon.h" #include "gdcmDocEntrySet.h" -typedef std::map TagDocEntryHT; +class gdcmValEntry; +class gdcmBinEntry; +class gdcmSeqEntry; + + +typedef std::map TagDocEntryHT; //----------------------------------------------------------------------------- @@ -16,19 +37,31 @@ class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet { public: gdcmElementSet(int); - ~gdcmElementSet(void); + ~gdcmElementSet(); virtual bool AddEntry(gdcmDocEntry *Entry); - virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove); - + 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: // Variables /// Hash Table (map), to provide fast access - TagDocEntryHT tagHT; + TagDocEntryHT TagHT; private: - + /// Just for following ::GetTagHT() + friend class gdcmDocument; + + /// Accessor to \ref TagHT + TagDocEntryHT* GetTagHT() { return &TagHT; }; }; //-----------------------------------------------------------------------------