X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=0c58214d7de0ab18104709fec7e5fdc6eb28db2c;hb=b080175e6fc56ccf766909400687b1ab156386e7;hp=56486efe4ecbf98e429ef0ed1ac8b2bc939acc87;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 56486efe..0c58214d 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:47 $ - Version: $Revision: 1.8 $ + 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 @@ -24,7 +24,12 @@ #include "gdcmCommon.h" #include "gdcmDocEntrySet.h" -typedef std::map TagDocEntryHT; +class gdcmValEntry; +class gdcmBinEntry; +class gdcmSeqEntry; + + +typedef std::map TagDocEntryHT; //----------------------------------------------------------------------------- @@ -32,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; }; }; //-----------------------------------------------------------------------------