X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmElementSet.h;h=88a1c55b09c81fbf81fc5c3f45933b6807f26440;hb=14900333988858a95935ec735224433cf308c21c;hp=258e58dd243ed9186c423be40d56a6c1e0ed8a05;hpb=98b5c3d02083ad65fce19ff79007fcc3f370e7c5;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 258e58dd..88a1c55b 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -1,31 +1,52 @@ -// gdcmElementSet.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmElementSet.h,v $ + Language: C++ + Date: $Date: 2004/07/02 13:55:28 $ + Version: $Revision: 1.10 $ + + 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" -#include "gdcmDocEntry.h" -#include -typedef std::string TagKey; -typedef std::map TagDocEntryHT; +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(void); - virtual bool AddEntry(gdcmDocEntry *Entry); // add to the H Table + virtual bool AddEntry(gdcmDocEntry *Entry); + virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove); + + virtual void Print(std::ostream &os = std::cout); + virtual void Write(FILE *fp, FileType filetype); - virtual void Print (std::ostream &os = std::cout); protected: - // Variables - /// Hash Table (map), to provide fast access TagDocEntryHT tagHT;