odil
C++11libraryfortheDICOMstandard
UIDsDictionary.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 _7b126e41_bd4d_443f_8873_d2fec52b1019
10 #define _7b126e41_bd4d_443f_8873_d2fec52b1019
11 
12 #include <map>
13 #include <string>
14 
15 namespace odil
16 {
17 
22 {
24  std::string name;
25 
27  std::string keyword;
28 
30  std::string type;
31 
34  std::string const & name="", std::string const & keyword="",
35  std::string const & type="");
36 };
37 
38 typedef std::map<std::string, UIDsDictionaryEntry> UIDsDictionary;
39 
40 }
41 
42 #endif // _7b126e41_bd4d_443f_8873_d2fec52b1019
std::string name
Full name.
Definition: UIDsDictionary.h:24
Definition: Association.cpp:39
Entry in a dictionary of DICOM UIDs.
Definition: UIDsDictionary.h:21
std::string type
Category.
Definition: UIDsDictionary.h:30
std::string keyword
Brief name.
Definition: UIDsDictionary.h:27
UIDsDictionaryEntry(std::string const &name="", std::string const &keyword="", std::string const &type="")
Constructor.
Definition: UIDsDictionary.cpp:18