]> Creatis software - gdcm.git/blob - src/gdcmDict.h
Some more Doxygenation (for Doc/html.developper/annotated.html)
[gdcm.git] / src / gdcmDict.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDict.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/11 15:15:38 $
7   Version:   $Revision: 1.30 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMDICT_H
20 #define GDCMDICT_H
21
22 #include "gdcmBase.h"
23 #include "gdcmDictEntry.h"
24
25 #include <iostream>
26 #include <list>
27 #include <map>
28
29 namespace gdcm 
30 {
31
32 //-----------------------------------------------------------------------------
33 typedef std::string DictKey;
34 typedef std::map<TagKey, DictEntry>  TagKeyHT;
35 typedef std::list<std::string>       EntryNamesList;
36 typedef std::map<std::string, 
37             std::list<std::string> > EntryNamesByCatMap;
38 //-----------------------------------------------------------------------------
39 /**
40  * \ingroup Dict
41  * \brief    Dict acts a memory representation of a dicom dictionary i.e.
42  *           it is a container for a collection of dictionary entries.
43  *           The dictionary is loaded from in an ascii file.
44  *           There should be a single public dictionary (THE dictionary of
45  *           the actual DICOM v3) but as many shadow dictionaries as imagers 
46  *           combined with all software versions...
47  * \see DictSet
48  */
49 class GDCM_EXPORT Dict : public Base
50 {
51 public:
52    Dict(std::string const & filename);
53    ~Dict();
54
55 // Print
56    void Print(std::ostream &os = std::cout);
57
58 // Entries
59    bool AddNewEntry (DictEntry const &newEntry);
60    bool ReplaceEntry(DictEntry const &newEntry);
61    bool RemoveEntry (TagKey const &key);
62    bool RemoveEntry (uint16_t group, uint16_t element);
63    
64 // Tag
65    DictEntry *GetDictEntry(uint16_t group, uint16_t element);
66
67   // EntryNamesList *GetDictEntryNames();
68   // EntryNamesByCatMap *GetDictEntryNamesByCategory();
69
70    /// \brief  Returns a ref to the Dicom Dictionary H table (map)
71    /// @return the Dicom Dictionary H table
72    const TagKeyHT & GetEntriesByKey() const { return KeyHt; }
73
74    /// \brief  Returns a ref to the Dicom Dictionary H table (map)
75    /// @return the Dicom Dictionary H table
76  
77 private:
78    /// ASCII file holding the Dictionnary
79    std::string Filename;
80
81    /// Access through TagKey
82    TagKeyHT  KeyHt;
83
84 };
85 } // end namespace gdcm
86
87 //-----------------------------------------------------------------------------
88 #endif