fw4spl
IntegerTypes.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 __FWTOOLS_INTEGERTYPES_HPP__
8 #define __FWTOOLS_INTEGERTYPES_HPP__
9 
10 #include <boost/mpl/vector.hpp>
11 
12 namespace fwTools
13 {
14 
15 typedef ::boost::mpl::vector<
16  signed char, unsigned char,
17  signed short, unsigned short,
18  signed int, unsigned int
19 #ifndef DEBUG
20  ,signed long, unsigned long
21 #endif
22  >::type IntegerTypes;
23 
24 
25 } // end namespace fwTools
26 
27 #endif //__FWTOOLS_INTEGERTYPES_HPP__
The namespace fwTools contains several tools like UUID, factory, dispatche, stringizer, macros, helper.