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) 2007 Dan Marsden
|
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_ASSOC_CLASS_HPP
|
|
|
|
#define BOOST_FUSION_ADAPTED_CLASS_ADAPT_ASSOC_CLASS_HPP
|
|
|
|
|
|
|
|
#include <boost/preprocessor/cat.hpp>
|
|
|
|
#include <boost/preprocessor/empty.hpp>
|
|
|
|
#include <boost/preprocessor/tuple/elem.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/remove_const.hpp>
|
2010-02-22 22:55:54 +00:00
|
|
|
|
2010-02-25 20:10:37 +00:00
|
|
|
#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>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/deref_data_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/key_of_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/value_of_data_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>
|
2009-10-04 16:59:37 +00:00
|
|
|
|
2010-02-22 22:55:54 +00:00
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_0(A, B, C, D, E)\
|
|
|
|
((A, B, C, D, E)) BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_1
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_1(A, B, C, D, E)\
|
|
|
|
((A, B, C, D, E)) BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_0
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_0_END
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_1_END
|
2009-10-04 16:59:37 +00:00
|
|
|
|
2010-02-22 22:55:54 +00:00
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_C( \
|
|
|
|
TEMPLATE_PARAMS_SEQ, NAME_SEQ, I, ATTRIBUTE) \
|
2009-12-15 13:30:02 +00:00
|
|
|
\
|
2010-02-22 22:55:54 +00:00
|
|
|
BOOST_FUSION_ADAPT_CLASS_C_BASE(TEMPLATE_PARAMS_SEQ,NAME_SEQ,I,ATTRIBUTE,5) \
|
2009-12-15 13:30:02 +00:00
|
|
|
\
|
2010-02-22 22:55:54 +00:00
|
|
|
template< \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_UNPACK_TEMPLATE_PARAMS(TEMPLATE_PARAMS_SEQ) \
|
|
|
|
> \
|
|
|
|
struct struct_assoc_key<BOOST_FUSION_ADAPT_STRUCT_UNPACK_NAME(NAME_SEQ), I> \
|
2009-10-04 16:59:37 +00:00
|
|
|
{ \
|
2010-02-22 22:55:54 +00:00
|
|
|
typedef BOOST_PP_TUPLE_ELEM(5, 4, ATTRIBUTE) type; \
|
2009-10-04 16:59:37 +00:00
|
|
|
};
|
2010-02-22 22:55:54 +00:00
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_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
|
|
|
assoc_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_ASSOC_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_ASSOC_CLASS_C)
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS(NAME, ATTRIBUTES) \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_BASE( \
|
|
|
|
(0), \
|
|
|
|
(0)(NAME), \
|
2010-02-25 20:10:37 +00:00
|
|
|
assoc_struct_tag, \
|
2010-05-07 13:37:34 +00:00
|
|
|
0, \
|
|
|
|
BOOST_PP_CAT(BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_ASSOC_CLASS_C)
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_CLASS_AS_VIEW(NAME, ATTRIBUTES) \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_BASE( \
|
|
|
|
(0), \
|
|
|
|
(0)(NAME), \
|
|
|
|
assoc_struct_tag, \
|
|
|
|
1, \
|
2010-02-22 22:55:54 +00:00
|
|
|
BOOST_PP_CAT(BOOST_FUSION_ADAPT_ASSOC_CLASS_FILLER_0 ATTRIBUTES,_END), \
|
|
|
|
BOOST_FUSION_ADAPT_ASSOC_CLASS_C)
|
2009-10-04 16:59:37 +00:00
|
|
|
|
|
|
|
#endif
|