2010-01-28 21:27:32 +00:00
|
|
|
/*=============================================================================
|
2010-02-25 20:10:37 +00:00
|
|
|
Copyright (c) 2001-2007 Joel de Guzman
|
|
|
|
Copyright (c) 2009-2010 Hartmut Kaiser
|
2011-01-19 17:46:05 +00:00
|
|
|
Copyright (c) 2010-2011 Christopher Schmidt
|
2010-01-28 21:27:32 +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_STRUCT_ADAPT_STRUCT_NAMED_HPP
|
|
|
|
#define BOOST_FUSION_ADAPTED_STRUCT_ADAPT_STRUCT_NAMED_HPP
|
2010-01-28 21:27:32 +00:00
|
|
|
|
2010-02-22 22:55:54 +00:00
|
|
|
#include <boost/fusion/adapted/struct/adapt_struct.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/proxy_type.hpp>
|
|
|
|
#include <boost/preprocessor/empty.hpp>
|
2010-01-28 21:27:32 +00:00
|
|
|
|
2010-05-07 13:37:34 +00:00
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_0(X, Y) \
|
|
|
|
(X, obj.Y) BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_1
|
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_1(X, Y) \
|
|
|
|
(X, obj.Y) BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_0
|
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_0_END
|
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_1_END
|
2010-02-22 22:55:54 +00:00
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED_NS( \
|
|
|
|
WRAPPED_TYPE, NAMESPACE_SEQ, NAME, ATTRIBUTES) \
|
2010-01-28 21:27:32 +00:00
|
|
|
\
|
2010-04-10 14:35:13 +00:00
|
|
|
BOOST_FUSION_ADAPT_STRUCT_DEFINE_PROXY_TYPE_IMPL( \
|
2010-02-22 22:55:54 +00:00
|
|
|
WRAPPED_TYPE,(0)NAMESPACE_SEQ,NAME) \
|
2010-01-28 21:27:32 +00:00
|
|
|
\
|
2010-05-07 13:37:34 +00:00
|
|
|
BOOST_FUSION_ADAPT_STRUCT_AS_VIEW( \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_NAMESPACE_DECLARATION((0)NAMESPACE_SEQ)NAME, \
|
2011-01-19 17:46:05 +00:00
|
|
|
BOOST_PP_CAT( \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_NAMED_FILLER_0 ATTRIBUTES,_END))
|
2010-02-22 22:55:54 +00:00
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_STRUCT_NAMED(WRAPPED_TYPE, NAME, ATTRIBUTES) \
|
|
|
|
BOOST_FUSION_ADAPT_STRUCT_NAMED_NS( \
|
|
|
|
WRAPPED_TYPE,(boost)(fusion)(adapted),NAME,ATTRIBUTES)
|
2010-01-28 21:27:32 +00:00
|
|
|
|
|
|
|
#endif
|