1
2// (C) Copyright Edward Diener 2011,2012
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6
7#if !defined(BOOST_TTI_TYPE_GEN_HPP)
8#define BOOST_TTI_TYPE_GEN_HPP
9
10#include <boost/preprocessor/cat.hpp>
11
12/*
13
14 The succeeding comments in this file are in doxygen format.
15
16*/
17
18/** \file
19*/
20
21/// Generates the macro metafunction name for BOOST_TTI_HAS_TYPE.
22/**
23 name = the name of the type.
24
25 returns = the generated macro metafunction name.
26*/
27#define BOOST_TTI_HAS_TYPE_GEN(name) \
28 BOOST_PP_CAT(has_type_,name) \
29/**/
30
31#endif // BOOST_TTI_TYPE_GEN_HPP
32

source code of boost/libs/tti/include/boost/tti/gen/has_type_gen.hpp