123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef BOOST_VARIANT_DETAIL_ENABLE_RECURSIVE_HPP
- #define BOOST_VARIANT_DETAIL_ENABLE_RECURSIVE_HPP
- #include <boost/variant/detail/enable_recursive_fwd.hpp>
- #include <boost/variant/variant_fwd.hpp>
- #if !defined(BOOST_VARIANT_NO_FULL_RECURSIVE_VARIANT_SUPPORT)
- # include <boost/mpl/apply.hpp>
- # include <boost/mpl/eval_if.hpp>
- # include <boost/mpl/lambda.hpp>
- #endif
- #include <boost/variant/detail/substitute.hpp>
- #include <boost/mpl/aux_/config/ctps.hpp>
- #include <boost/mpl/bool_fwd.hpp>
- #include <boost/mpl/if.hpp>
- #include <boost/mpl/or.hpp>
- #include <boost/type_traits/is_pointer.hpp>
- #include <boost/type_traits/is_reference.hpp>
- #include <boost/type_traits/is_same.hpp>
- #include <boost/variant/recursive_wrapper.hpp>
- namespace boost {
- namespace detail { namespace variant {
- # define BOOST_VARIANT_AUX_ENABLE_RECURSIVE_IMPL(T,Dest,Source) \
- substitute< T , Dest , Source > \
-
- template <typename T, typename RecursiveVariant, typename NoWrapper>
- struct enable_recursive
- : BOOST_VARIANT_AUX_ENABLE_RECURSIVE_IMPL(
- T, RecursiveVariant, ::boost::recursive_variant_
- )
- {
- };
- template <typename T, typename RecursiveVariant>
- struct enable_recursive< T,RecursiveVariant,mpl::false_ >
- {
- private:
- typedef typename BOOST_VARIANT_AUX_ENABLE_RECURSIVE_IMPL(
- T, RecursiveVariant, ::boost::recursive_variant_
- )::type t_;
- public:
-
- typedef typename mpl::if_<
- mpl::or_<
- is_same< t_,T >
- , is_reference<t_>
- , is_pointer<t_>
- >
- , t_
- , boost::recursive_wrapper<t_>
- >::type type;
- };
- template <typename RecursiveVariant, typename NoWrapper>
- struct quoted_enable_recursive
- {
- template <typename T>
- struct apply
- : enable_recursive<T, RecursiveVariant, NoWrapper>
- {
- };
- };
- }}
- }
- #endif
|