1 /*=========================================================================
4 Module: $RCSfile: gdcmElementSet.h,v $
6 Date: $Date: 2005/02/21 17:47:19 $
7 Version: $Revision: 1.44 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #ifndef GDCMELEMENTSET_H
20 #define GDCMELEMENTSET_H
22 #include "gdcmDocEntrySet.h"
34 typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
36 //-----------------------------------------------------------------------------
39 * \ref ElementSet is based on the STL map<> container
40 * (see \ref ElementSet::TagHT), as opposed to \ref SQItem
41 * which is based on an STL list container (see \ref ListDocEntry).
42 * It contains the 'zero-level- DocEntry (out of any Dicom Sequence)
44 class GDCM_EXPORT ElementSet : public DocEntrySet
50 virtual void Print(std::ostream &os = std::cout,
51 std::string const &indent = "" );
53 void WriteContent(std::ofstream *fp, FileType filetype);
55 bool AddEntry(DocEntry *Entry);
56 bool RemoveEntry(DocEntry *EntryToRemove);
57 bool RemoveEntryNoDestroy(DocEntry *EntryToRemove);
60 DocEntry *GetFirstEntry();
61 DocEntry *GetNextEntry();
62 DocEntry *GetDocEntry(uint16_t group, uint16_t elem);
63 /// Tells us if the ElementSet contains no entry
64 bool IsEmpty() { return TagHT.empty(); };
70 /// Hash Table (map), to provide fast access
72 /// iterator, used to visit the TagHT variable
73 TagDocEntryHT::iterator ItTagHT;
74 /// iterator, used to visit the TagHT variable, seeking only for ValEntries
75 TagDocEntryHT::iterator ItValEntryTagHT;
77 } // end namespace gdcm
78 //-----------------------------------------------------------------------------