fw4spl
IntrinsicTypes.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_INTRINSICTYPES_HPP__
8 #define __FWTOOLS_INTRINSICTYPES_HPP__
9 
10 #include <boost/mpl/push_back.hpp>
11 
12 #include "fwTools/IntegerTypes.hpp"
13 
14 namespace fwTools
15 {
16 
17 #ifdef DEBUG
18 typedef ::boost::mpl::push_back< IntegerTypes, float >::type IntrinsicTypes;
19 #else
20 typedef ::boost::mpl::push_back< ::boost::mpl::push_back< IntegerTypes, float >::type, double >::type IntrinsicTypes;
21 #endif
22 
23 } // end namespace fwTools
24 
25 #endif //__FWTOOLS_INTRINSICTYPES_HPP__
The namespace fwTools contains several tools like UUID, factory, dispatche, stringizer, macros, helper.