X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmElementSet.h;h=375576e70c17ea4e93415841ea4aa7cfad6bd33e;hb=879f56a62d0772c95e92d0657882eb1886b4153d;hp=0c1fd35774292797721591d22f5b86af39f60e85;hpb=3a55e1cf34bdbd1b10975432d648f81d9c6c048b;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 0c1fd357..375576e7 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2004/07/19 03:34:12 $ - Version: $Revision: 1.11 $ + Date: $Date: 2004/10/07 18:09:11 $ + Version: $Revision: 1.18 $ 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. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -19,10 +19,10 @@ #ifndef GDCMELEMENTSET_H #define GDCMELEMENTSET_H -#include -#include #include "gdcmCommon.h" #include "gdcmDocEntrySet.h" +#include +#include class gdcmValEntry; class gdcmBinEntry; @@ -39,14 +39,17 @@ public: gdcmElementSet(int); ~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 gdcmElementSet::tagHT + /// Accessor to \ref TagHT // Do not expose this to user (public API) ! - //TagDocEntryHT &GetEntry() { return TagHT; }; + // I re-add it temporaryly JPRx + TagDocEntryHT &GetEntry() { return TagHT; }; + protected: // Variables @@ -54,7 +57,11 @@ protected: TagDocEntryHT TagHT; private: - //friend class gdcmDicomDir; + /// Just for following ::GetTagHT() + friend class gdcmDocument; + + /// Accessor to \ref TagHT + TagDocEntryHT* GetTagHT() { return &TagHT; }; }; //-----------------------------------------------------------------------------