]> Creatis software - gdcm.git/blob - src/gdcmDict.h
remove H Table NameHT
[gdcm.git] / src / gdcmDict.h
1 // gdcmDict.h
2
3 #ifndef GDCMDICT_H
4 #define GDCMDICT_H
5
6 #include "gdcmCommon.h"
7 #include "gdcmDictEntry.h"
8 #include <map>
9
10 typedef std::map<TagKey,  gdcmDictEntry*> TagKeyHT;
11 typedef std::map<TagName, gdcmDictEntry*> TagNameHT;
12
13 /*
14  * \defgroup gdcmDict
15  * \brief    gdcmDict acts a memory representation of a dicom dictionary i.e.
16  *           it is a container for a collection of dictionary entries. The
17  *           dictionary is loaded from in an ascii file.
18  *           There should be a single public dictionary (THE dictionary of
19  *           the actual DICOM v3) but as many shadow dictionaries as imagers 
20  *           combined with all software versions...
21  * \see gdcmDictSet
22  */
23 class GDCM_EXPORT gdcmDict {
24    std::string name;
25    std::string filename;
26    /// Access through TagKey (see alternate access with NameHt)
27         TagKeyHT  KeyHt;
28    /// Access through TagName (see alternate access with KeyHt)
29         TagNameHT NameHt;
30 public:
31         gdcmDict(std::string & FileName);
32         ~gdcmDict();
33         bool AddNewEntry (gdcmDictEntry* NewEntry);
34         bool ReplaceEntry(gdcmDictEntry* NewEntry);
35         bool RemoveEntry (TagKey key);
36         bool RemoveEntry (guint16 group, guint16 element);
37         gdcmDictEntry * GetTagByNumber(guint16 group, guint16 element);
38         gdcmDictEntry * GetTagByName(TagName name);
39         void Print(std::ostream&);
40         void PrintByKey(std::ostream&);
41         void PrintByName(std::ostream&);        
42
43  /**
44  * \ingroup gdcmDict
45  * \brief   returns a ref to the Dicom Dictionary H table (map)
46  * return the Dicom Dictionary H table
47  */
48  inline TagKeyHT &      gdcmDict::GetEntries(void)  {
49     return KeyHt; 
50  }
51  
52 };
53
54 #endif