diff options
Diffstat (limited to '3rdParty/Boost/src/boost/tti/gen')
10 files changed, 304 insertions, 0 deletions
diff --git a/3rdParty/Boost/src/boost/tti/gen/has_data_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_data_gen.hpp new file mode 100644 index 0000000..aa22417 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_data_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_DATA_GEN_HPP) +#define BOOST_TTI_DATA_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_DATA. +/** + name = the name of the member data. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_DATA_GEN(name) \ + BOOST_PP_CAT(has_data_,name) \ +/**/ + +#endif // BOOST_TTI_DATA_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_function_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_function_gen.hpp new file mode 100644 index 0000000..e5a5d25 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_function_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_FUNCTION_GEN_HPP) +#define BOOST_TTI_FUNCTION_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_FUNCTION. +/** + name = the name of the static member function. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_FUNCTION_GEN(name) \ + BOOST_PP_CAT(has_function_,name) \ +/**/ + +#endif // BOOST_TTI_FUNCTION_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_member_data_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_member_data_gen.hpp new file mode 100644 index 0000000..f41aafa --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_member_data_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_MEMBER_DATA_GEN_HPP) +#define BOOST_TTI_MEMBER_DATA_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_MEMBER_DATA. +/** + name = the name of the member data. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_MEMBER_DATA_GEN(name) \ + BOOST_PP_CAT(has_member_data_,name) \ +/**/ + +#endif // BOOST_TTI_MEMBER_DATA_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_member_function_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_member_function_gen.hpp new file mode 100644 index 0000000..3832946 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_member_function_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_MEMBER_FUNCTION_GEN_HPP) +#define BOOST_TTI_MEMBER_FUNCTION_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_MEMBER_FUNCTION. +/** + name = the name of the member function. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_MEMBER_FUNCTION_GEN(name) \ + BOOST_PP_CAT(has_member_function_,name) \ +/**/ + +#endif // BOOST_TTI_MEMBER_FUNCTION_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_static_member_data_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_static_member_data_gen.hpp new file mode 100644 index 0000000..6e42dc7 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_static_member_data_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP) +#define BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_STATIC_MEMBER_DATA. +/** + name = the name of the static member data. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(name) \ + BOOST_PP_CAT(has_static_member_data_,name) \ +/**/ + +#endif // BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_static_member_function_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_static_member_function_gen.hpp new file mode 100644 index 0000000..ca29827 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_static_member_function_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP) +#define BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION. +/** + name = the name of the static member function. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN(name) \ + BOOST_PP_CAT(has_static_member_function_,name) \ +/**/ + +#endif // BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_template_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_template_gen.hpp new file mode 100644 index 0000000..9095488 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_template_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_TEMPLATE_GEN_HPP) +#define BOOST_TTI_TEMPLATE_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_TEMPLATE. +/** + name = the name of the class template. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_TEMPLATE_GEN(name) \ + BOOST_PP_CAT(has_template_,name) \ +/**/ + +#endif // BOOST_TTI_TEMPLATE_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/has_type_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/has_type_gen.hpp new file mode 100644 index 0000000..5239570 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/has_type_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_TYPE_GEN_HPP) +#define BOOST_TTI_TYPE_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_HAS_TYPE. +/** + name = the name of the type. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_HAS_TYPE_GEN(name) \ + BOOST_PP_CAT(has_type_,name) \ +/**/ + +#endif // BOOST_TTI_TYPE_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/member_type_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/member_type_gen.hpp new file mode 100644 index 0000000..475ec48 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/member_type_gen.hpp @@ -0,0 +1,31 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_MEMBER_TYPE_GEN_HPP) +#define BOOST_TTI_MEMBER_TYPE_GEN_HPP + +#include <boost/preprocessor/cat.hpp> + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the macro metafunction name for BOOST_TTI_MEMBER_TYPE. +/** + name = the name of the inner type. + + returns = the generated macro metafunction name. +*/ +#define BOOST_TTI_MEMBER_TYPE_GEN(name) \ + BOOST_PP_CAT(member_type_,name) \ +/**/ + +#endif // BOOST_TTI_MEMBER_TYPE_GEN_HPP diff --git a/3rdParty/Boost/src/boost/tti/gen/namespace_gen.hpp b/3rdParty/Boost/src/boost/tti/gen/namespace_gen.hpp new file mode 100644 index 0000000..6781569 --- /dev/null +++ b/3rdParty/Boost/src/boost/tti/gen/namespace_gen.hpp @@ -0,0 +1,25 @@ + +// (C) Copyright Edward Diener 2011,2012 +// Use, modification and distribution are subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt). + +#if !defined(BOOST_TTI_NAMESPACE_GEN_HPP) +#define BOOST_TTI_NAMESPACE_GEN_HPP + +/* + + The succeeding comments in this file are in doxygen format. + +*/ + +/** \file +*/ + +/// Generates the name of the Boost TTI namespace +/** + returns = the generated name of the Boost TTI namespace. +*/ +#define BOOST_TTI_NAMESPACE boost::tti + +#endif // BOOST_TTI_NAMESPACE_GEN_HPP |