Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:52:54

0001 
0002 //  (C) Copyright Edward Diener 2012,2013
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 
0007 #if !defined(BOOST_TTI_DETAIL_DATA_HPP)
0008 #define BOOST_TTI_DETAIL_DATA_HPP
0009 
0010 #include <boost/mpl/or.hpp>
0011 #include <boost/preprocessor/cat.hpp>
0012 #include <boost/tti/detail/dmem_data.hpp>
0013 #include <boost/tti/detail/dstatic_mem_data.hpp>
0014 
0015 #define BOOST_TTI_DETAIL_TRAIT_HAS_DATA(trait,name) \
0016   BOOST_TTI_DETAIL_TRAIT_HAS_MEMBER_DATA(trait,name) \
0017   BOOST_TTI_DETAIL_TRAIT_HAS_STATIC_MEMBER_DATA(trait,name) \
0018   template<class BOOST_TTI_DETAIL_TP_ET,class BOOST_TTI_DETAIL_TP_DT> \
0019   struct BOOST_PP_CAT(trait,_detail_hd) : \
0020     boost::mpl::or_ \
0021         < \
0022         BOOST_PP_CAT(trait,_detail_hmd_with_enclosing_class)<BOOST_TTI_DETAIL_TP_ET,BOOST_TTI_DETAIL_TP_DT>, \
0023         BOOST_PP_CAT(trait,_detail_hsd)<BOOST_TTI_DETAIL_TP_ET,BOOST_TTI_DETAIL_TP_DT> \
0024         > \
0025     { \
0026     }; \
0027 /**/
0028 
0029 #endif // BOOST_TTI_DETAIL_DATA_HPP