]> Creatis software - gdcm.git/blob - src/gdcmDict.h
* vtk subdir added. Contains vtkGdcmReader.[cxx|h] a vtk class
[gdcm.git] / src / gdcmDict.h
1 // gdcmDict.h
2
3 #ifndef GDCMDICT_H
4 #define GDCMDICT_H
5
6 #include <map>
7 #include "gdcmCommon.h"
8 #include "gdcmDictEntry.h"
9
10 typedef map<TagKey,  gdcmDictEntry*> TagKeyHT;
11 typedef 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         string name;
25         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(string & FileName);
32         ~gdcmDict();
33         int AddNewEntry (gdcmDictEntry* NewEntry);
34         int ReplaceEntry(gdcmDictEntry* NewEntry);
35         int RemoveEntry (TagKey key);
36         int RemoveEntry (guint16 group, guint16 element);
37         gdcmDictEntry * GetTagByNumber(guint16 group, guint16 element);
38         gdcmDictEntry * GetTagByName(TagName name);
39         void Print(ostream&);
40         void PrintByKey(ostream&);
41         void PrintByName(ostream&);
42         TagKeyHT & GetEntries(void) { return KeyHt; }
43 };
44
45 #endif