]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/tti/include/boost/tti/gen/has_data_gen.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / tti / include / boost / tti / gen / has_data_gen.hpp
CommitLineData
7c673cae
FG
1
2// (C) Copyright Edward Diener 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_DATA_GEN_HPP)
8#define BOOST_TTI_DATA_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_DATA.
22/**
23 name = the name of the member data.
24
25 returns = the generated macro metafunction name.
26*/
27#define BOOST_TTI_HAS_DATA_GEN(name) \
28 BOOST_PP_CAT(has_data_,name) \
29/**/
30
31#endif // BOOST_TTI_DATA_GEN_HPP