Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:31:08

0001 /*=============================================================================
0002     Copyright (c) 2010-2011 Christopher Schmidt
0003 
0004     Distributed under the Boost Software License, Version 1.0. (See accompanying
0005     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 ==============================================================================*/
0007 
0008 #ifndef BOOST_FUSION_ADAPTED_STRUCT_ADAPT_ASSOC_STRUCT_NAMED_HPP
0009 #define BOOST_FUSION_ADAPTED_STRUCT_ADAPT_ASSOC_STRUCT_NAMED_HPP
0010 
0011 #include <boost/fusion/support/config.hpp>
0012 #include <boost/fusion/adapted/struct/adapt_assoc_struct.hpp>
0013 #include <boost/fusion/adapted/struct/detail/proxy_type.hpp>
0014 
0015 #define BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED_NS(                               \
0016     WRAPPED_TYPE, NAMESPACE_SEQ, NAME, ATTRIBUTES)                              \
0017                                                                                 \
0018     BOOST_FUSION_ADAPT_STRUCT_DEFINE_PROXY_TYPE_IMPL(                           \
0019         WRAPPED_TYPE,(0)NAMESPACE_SEQ,NAME)                                     \
0020                                                                                 \
0021     BOOST_FUSION_ADAPT_ASSOC_STRUCT_AS_VIEW(                                    \
0022         BOOST_FUSION_ADAPT_STRUCT_NAMESPACE_DECLARATION((0)NAMESPACE_SEQ)NAME,  \
0023         ATTRIBUTES)
0024 
0025 #define BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED(WRAPPED_TYPE, NAME, ATTRIBUTES)   \
0026     BOOST_FUSION_ADAPT_ASSOC_STRUCT_NAMED_NS(                                   \
0027         WRAPPED_TYPE,(boost)(fusion)(adapted),NAME,ATTRIBUTES)
0028 
0029 #endif