|
||||
File indexing completed on 2025-01-18 09:52:54
0001 0002 // (C) Copyright Edward Diener 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_FUNCTION_GEN_HPP) 0008 #define BOOST_TTI_FUNCTION_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_FUNCTION. 0022 /** 0023 name = the name of the function. 0024 0025 returns = the generated macro metafunction name. 0026 */ 0027 #define BOOST_TTI_HAS_FUNCTION_GEN(name) \ 0028 BOOST_PP_CAT(has_function_,name) \ 0029 /**/ 0030 0031 #endif // BOOST_TTI_FUNCTION_GEN_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |