2009-10-04 16:59:37 +00:00
|
|
|
/*=============================================================================
|
2010-02-25 20:10:37 +00:00
|
|
|
Copyright (c) 2001-2009 Joel de Guzman
|
|
|
|
Copyright (c) 2009-2010 Hartmut Kaiser
|
2010-02-22 22:55:54 +00:00
|
|
|
Copyright (c) 2010 Christopher Schmidt
|
2009-10-04 16:59:37 +00:00
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
==============================================================================*/
|
|
|
|
|
2010-02-22 22:55:54 +00:00
|
|
|
#ifndef BOOST_FUSION_ADAPTED_CLASS_ADAPT_CLASS_HPP
|
|
|
|
#define BOOST_FUSION_ADAPTED_CLASS_ADAPT_CLASS_HPP
|
|
|
|
|
|
|
|
#include <boost/preprocessor/cat.hpp>
|
|
|
|
#include <boost/preprocessor/empty.hpp>
|
2010-02-25 20:10:37 +00:00
|
|
|
#include <boost/type_traits/add_reference.hpp>
|
|
|
|
#include <boost/type_traits/is_const.hpp>
|
|
|
|
#include <boost/type_traits/add_const.hpp>
|
|
|
|
#include <boost/type_traits/remove_const.hpp>
|
|
|
|
|
|
|
|
#include <boost/fusion/adapted/struct/detail/extension.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/adapt_base.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/at_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/is_view_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/value_at_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/category_of_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/size_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/begin_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/end_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/value_of_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/deref_impl.hpp>
|
2010-02-22 22:55:54 +00:00
|
|
|
#include <boost/fusion/adapted/class/detail/extension.hpp>
|
|
|
|
#include <boost/fusion/adapted/class/detail/adapt_base.hpp>
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_FILLER_0(A, B, C, D)\
|
|
|
|
((A, B, C, D)) BOOST_FUSION_ADAPT_CLASS_FILLER_1
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_FILLER_1(A, B, C, D)\
|
|
|
|
((A, B, C, D)) BOOST_FUSION_ADAPT_CLASS_FILLER_0
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_FILLER_0_END
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_FILLER_1_END
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_C(TEMPLATE_PARAMS_SEQ, NAME_SEQ, I, ATTRIBUTE) \
|
|
|
|
BOOST_FUSION_ADAPT_CLASS_C_BASE( \
|
|
|
|
TEMPLATE_PARAMS_SEQ, NAME_SEQ, I, ATTRIBUTE, 4)
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_TPL_CLASS(TEMPLATE_PARAMS_SEQ, NAME_SEQ , ATTRIBUTES)\
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_BASE( \
|
|
|
|
(1)TEMPLATE_PARAMS_SEQ, \
|
|
|
|
(1)NAME_SEQ, \
|
2010-02-25 20:10:37 +00:00
|
|
|
struct_tag, \
|
2010-05-07 13:37:34 +00:00
|
|
|
0, \
|
2010-02-22 22:55:54 +00:00
|
|
|
BOOST_PP_CAT(BOOST_FUSION_ADAPT_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_CLASS_C)
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS(NAME, ATTRIBUTES) \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_BASE( \
|
|
|
|
(0), \
|
|
|
|
(0)(NAME), \
|
2010-02-25 20:10:37 +00:00
|
|
|
struct_tag, \
|
2010-05-07 13:37:34 +00:00
|
|
|
0, \
|
|
|
|
BOOST_PP_CAT(BOOST_FUSION_ADAPT_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_CLASS_C)
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_CLASS_AS_VIEW(NAME, ATTRIBUTES) \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_BASE( \
|
|
|
|
(0), \
|
|
|
|
(0)(NAME), \
|
|
|
|
struct_tag, \
|
|
|
|
1, \
|
2010-02-22 22:55:54 +00:00
|
|
|
BOOST_PP_CAT(BOOST_FUSION_ADAPT_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_CLASS_C)
|
2009-10-04 16:59:37 +00:00
|
|
|
|
2010-01-29 15:03:35 +00:00
|
|
|
|
2009-10-04 16:59:37 +00:00
|
|
|
#endif
|