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 2011,2012
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_STATIC_MEMBER_DATA_GEN_HPP)
0008 #define BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP
0009 
0010 #include <boost/preprocessor/cat.hpp>
0011 
0012 /*
0013 
0014   The succeeding comments in this file are in doxygen format.
0015 
0016 */
0017 
0018 /** \file
0019 */
0020 
0021 /// Generates the macro metafunction name for BOOST_TTI_HAS_STATIC_MEMBER_DATA.
0022 /**
0023     name  = the name of the static member data.
0024 
0025     returns = the generated macro metafunction name.
0026 */
0027 #define BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(name) \
0028   BOOST_PP_CAT(has_static_member_data_,name) \
0029 /**/
0030 
0031 #endif // BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP