blob: 117d3ab19682a6e42eb23e0afa305d24f0762eb0 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION
3
4// Copyright Aleksey Gurtovoy 2000-2004
5//
6// Distributed under the Boost Software License, Version 1.0.
7// (See accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9//
10// See http://www.boost.org/libs/mpl for documentation.
11
12// $Id: arithmetic_op.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
13// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
14// $Revision: 49267 $
15
Jeff Thompson3d613fd2013-10-15 15:39:04 -070016#if !defined(NDNBOOST_MPL_PREPROCESSING_MODE)
Jeff Thompsona28eed82013-08-22 16:21:10 -070017# include <ndnboost/mpl/integral_c.hpp>
18# include <ndnboost/mpl/aux_/largest_int.hpp>
19# include <ndnboost/mpl/aux_/value_wknd.hpp>
20#endif
21
22#if !defined(AUX778076_OP_PREFIX)
23# define AUX778076_OP_PREFIX AUX778076_OP_NAME
24#endif
25
26#include <ndnboost/mpl/aux_/numeric_op.hpp>
27#include <ndnboost/mpl/aux_/config/static_constant.hpp>
28#include <ndnboost/mpl/aux_/config/use_preprocessed.hpp>
29
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030#if !defined(NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS) \
31 && !defined(NDNBOOST_MPL_PREPROCESSING_MODE)
Jeff Thompsona28eed82013-08-22 16:21:10 -070032
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033# define NDNBOOST_MPL_PREPROCESSED_HEADER AUX778076_OP_PREFIX.hpp
Jeff Thompsona28eed82013-08-22 16:21:10 -070034# include <ndnboost/mpl/aux_/include_preprocessed.hpp>
35
36#else
37
38# include <ndnboost/mpl/aux_/config/workaround.hpp>
39# include <ndnboost/preprocessor/cat.hpp>
40
41
42namespace ndnboost { namespace mpl {
43
Jeff Thompson3d613fd2013-10-15 15:39:04 -070044#if defined(NDNBOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
Jeff Thompsona28eed82013-08-22 16:21:10 -070045namespace aux {
46template< typename T, T n1, T n2 >
Jeff Thompson3d613fd2013-10-15 15:39:04 -070047struct NDNBOOST_PP_CAT(AUX778076_OP_PREFIX,_wknd)
Jeff Thompsona28eed82013-08-22 16:21:10 -070048{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070049 NDNBOOST_STATIC_CONSTANT(T, value = (n1 AUX778076_OP_TOKEN n2));
Jeff Thompsona28eed82013-08-22 16:21:10 -070050 typedef integral_c<T,value> type;
51};
52}
53#endif
54
55template<>
56struct AUX778076_OP_IMPL_NAME<integral_c_tag,integral_c_tag>
57{
58 template< typename N1, typename N2 > struct apply
Jeff Thompson3d613fd2013-10-15 15:39:04 -070059#if !defined(NDNBOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
Jeff Thompsona28eed82013-08-22 16:21:10 -070060 : integral_c<
61 typename aux::largest_int<
62 typename N1::value_type
63 , typename N2::value_type
64 >::type
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065 , ( NDNBOOST_MPL_AUX_VALUE_WKND(N1)::value
66 AUX778076_OP_TOKEN NDNBOOST_MPL_AUX_VALUE_WKND(N2)::value
Jeff Thompsona28eed82013-08-22 16:21:10 -070067 )
68 >
69#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070070 : aux::NDNBOOST_PP_CAT(AUX778076_OP_PREFIX,_wknd)<
Jeff Thompsona28eed82013-08-22 16:21:10 -070071 typename aux::largest_int<
72 typename N1::value_type
73 , typename N2::value_type
74 >::type
75 , N1::value
76 , N2::value
77 >::type
78#endif
79 {
80 };
81};
82
83}}
84
Jeff Thompson3d613fd2013-10-15 15:39:04 -070085#endif // NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
Jeff Thompsona28eed82013-08-22 16:21:10 -070086
87#undef AUX778076_OP_TAG_NAME
88#undef AUX778076_OP_IMPL_NAME
89#undef AUX778076_OP_ARITY
90#undef AUX778076_OP_PREFIX
91#undef AUX778076_OP_NAME
92#undef AUX778076_OP_TOKEN