File indexing completed on 2025-01-18 09:31:08
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_FUSION_ADAPTED_STRUCT_DEFINE_STRUCT_INLINE_HPP
0009 #define BOOST_FUSION_ADAPTED_STRUCT_DEFINE_STRUCT_INLINE_HPP
0010
0011 #include <boost/fusion/support/config.hpp>
0012 #include <boost/fusion/adapted/struct/adapt_struct.hpp>
0013 #include <boost/fusion/adapted/struct/detail/define_struct_inline.hpp>
0014
0015 #define BOOST_FUSION_DEFINE_TPL_STRUCT_INLINE( \
0016 TEMPLATE_PARAMS_SEQ, NAME, ATTRIBUTES) \
0017 \
0018 BOOST_FUSION_DEFINE_TPL_STRUCT_INLINE_IMPL( \
0019 TEMPLATE_PARAMS_SEQ, \
0020 NAME, \
0021 ATTRIBUTES)
0022
0023 #define BOOST_FUSION_DEFINE_STRUCT_INLINE(NAME, ATTRIBUTES) \
0024 BOOST_FUSION_DEFINE_STRUCT_INLINE_IMPL(NAME, ATTRIBUTES) \
0025
0026 #endif