fw4spl
core/fwMedData/include/fwMedData/types.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #ifndef __FWMEDDATA_TYPES_HPP__
8 #define __FWMEDDATA_TYPES_HPP__
9 
10 #include <string>
11 #include <vector>
12 
13 namespace fwMedData
14 {
15 typedef std::string DicomValueType;
16 typedef std::vector<DicomValueType> DicomValuesType;
17 
18 }//end namespace fwMedData
19 
20 #endif // __FWMEDDATA_TYPES_HPP__
21 
22 
Namespace containing medical data.