blob: 90b66e72d6308175ae8a4a9202043b03cf1f9c44 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_AUX_HAS_REBIND_HPP_INCLUDED
3#define NDNBOOST_MPL_AUX_HAS_REBIND_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2002-2004
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: has_rebind.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/aux_/config/msvc.hpp>
18#include <ndnboost/mpl/aux_/config/intel.hpp>
19#include <ndnboost/mpl/aux_/config/workaround.hpp>
20
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021#if NDNBOOST_WORKAROUND(__EDG_VERSION__, <= 244) && !defined(NDNBOOST_INTEL_CXX_VERSION)
Jeff Thompsona28eed82013-08-22 16:21:10 -070022# include <ndnboost/mpl/has_xxx.hpp>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023#elif NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070024# include <ndnboost/mpl/has_xxx.hpp>
25# include <ndnboost/mpl/if.hpp>
26# include <ndnboost/mpl/bool.hpp>
27# include <ndnboost/mpl/aux_/msvc_is_class.hpp>
Jeff Thompson3d613fd2013-10-15 15:39:04 -070028#elif NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x610))
Jeff Thompsona28eed82013-08-22 16:21:10 -070029# include <ndnboost/mpl/if.hpp>
30# include <ndnboost/mpl/bool.hpp>
31# include <ndnboost/mpl/aux_/yes_no.hpp>
32# include <ndnboost/mpl/aux_/config/static_constant.hpp>
33# include <ndnboost/type_traits/is_class.hpp>
34#else
35# include <ndnboost/mpl/aux_/type_wrapper.hpp>
36# include <ndnboost/mpl/aux_/yes_no.hpp>
37# include <ndnboost/mpl/aux_/config/static_constant.hpp>
38#endif
39
40namespace ndnboost { namespace mpl { namespace aux {
41
Jeff Thompson3d613fd2013-10-15 15:39:04 -070042#if NDNBOOST_WORKAROUND(__EDG_VERSION__, <= 244) && !defined(NDNBOOST_INTEL_CXX_VERSION)
Jeff Thompsona28eed82013-08-22 16:21:10 -070043
Jeff Thompson3d613fd2013-10-15 15:39:04 -070044NDNBOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_rebind, rebind, false)
Jeff Thompsona28eed82013-08-22 16:21:10 -070045
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046#elif NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070047
Jeff Thompson3d613fd2013-10-15 15:39:04 -070048NDNBOOST_MPL_HAS_XXX_TRAIT_NAMED_DEF(has_rebind_impl, rebind, false)
Jeff Thompsona28eed82013-08-22 16:21:10 -070049
50template< typename T >
51struct has_rebind
52 : if_<
53 msvc_is_class<T>
54 , has_rebind_impl<T>
55 , bool_<false>
56 >::type
57{
58};
59
60#else // the rest
61
62template< typename T > struct has_rebind_tag {};
63no_tag operator|(has_rebind_tag<int>, void const volatile*);
64
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065# if !NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x610))
Jeff Thompsona28eed82013-08-22 16:21:10 -070066template< typename T >
67struct has_rebind
68{
69 static has_rebind_tag<T>* get();
Jeff Thompson3d613fd2013-10-15 15:39:04 -070070 NDNBOOST_STATIC_CONSTANT(bool, value =
Jeff Thompsona28eed82013-08-22 16:21:10 -070071 sizeof(has_rebind_tag<int>() | get()) == sizeof(yes_tag)
72 );
73};
74# else // __BORLANDC__
75template< typename T >
76struct has_rebind_impl
77{
78 static T* get();
Jeff Thompson3d613fd2013-10-15 15:39:04 -070079 NDNBOOST_STATIC_CONSTANT(bool, value =
Jeff Thompsona28eed82013-08-22 16:21:10 -070080 sizeof(has_rebind_tag<int>() | get()) == sizeof(yes_tag)
81 );
82};
83
84template< typename T >
85struct has_rebind
86 : if_<
87 is_class<T>
88 , has_rebind_impl<T>
89 , bool_<false>
90 >::type
91{
92};
93# endif // __BORLANDC__
94
95#endif
96
97}}}
98
Jeff Thompson3d613fd2013-10-15 15:39:04 -070099#endif // NDNBOOST_MPL_AUX_HAS_REBIND_HPP_INCLUDED