odil
ElementsDictionary.h
1 /*************************************************************************
2  * odil - Copyright (C) Universite de Strasbourg
3  * Distributed under the terms of the CeCILL-B license, as published by
4  * the CEA-CNRS-INRIA. Refer to the LICENSE file or to
5  * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
6  * for details.
7  ************************************************************************/
8 
9 #ifndef _f4b88e07_d515_41be_ad1b_37899ec6451e
10 #define _f4b88e07_d515_41be_ad1b_37899ec6451e
11 
12 #include <map>
13 #include <string>
14 
15 #include <odil/Tag.h>
16 
17 namespace odil
18 {
19 
24 {
25  std::string name;
26  std::string keyword;
27  std::string vr;
28  std::string vm;
29 
31  std::string const & name, std::string const & keyword,
32  std::string const & vr, std::string const & vm);
33 };
34 
35 typedef std::map<Tag, ElementsDictionaryEntry> ElementsDictionary;
36 
37 }
38 
39 #endif // _f4b88e07_d515_41be_ad1b_37899ec6451e
Definition: Association.cpp:39
Entry in a dictionary of DICOM elements.
Definition: ElementsDictionary.h:23