blob: dc8e197fb259499f822591080b14a50f65a1304a [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
2// Use, modification and distribution are subject to the Boost Software License,
3// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt).
5//
6// See http://www.boost.org/libs/type_traits for most recent version including documentation.
7//
8// defines traits classes for arithmetic types:
9// is_void, is_integral, is_float, is_arithmetic, is_fundamental.
10
Jeff Thompson3d613fd2013-10-15 15:39:04 -070011#ifndef NDNBOOST_TT_ARITHMETIC_TRAITS_HPP_INCLUDED
12#define NDNBOOST_TT_ARITHMETIC_TRAITS_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -070013
14#include <ndnboost/type_traits/is_arithmetic.hpp>
15#include <ndnboost/type_traits/is_float.hpp>
16#include <ndnboost/type_traits/is_fundamental.hpp>
17#include <ndnboost/type_traits/is_integral.hpp>
18#include <ndnboost/type_traits/is_void.hpp>
19
Jeff Thompson3d613fd2013-10-15 15:39:04 -070020#endif // NDNBOOST_TT_ARITHMETIC_TRAITS_HPP_INCLUDED