mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-17 02:14:19 +00:00
Add boost and cpprestsdk
This commit is contained in:
31
vendor/boost/include/boost/tti/gen/has_class_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_class_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_CLASS_GEN_HPP)
|
||||
#define BOOST_TTI_CLASS_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_CLASS.
|
||||
/**
|
||||
name = the name of the class/struct.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_CLASS_GEN(name) \
|
||||
BOOST_PP_CAT(has_class_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_CLASS_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/has_data_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_data_gen.hpp
vendored
Normal file
@ -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 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
|
31
vendor/boost/include/boost/tti/gen/has_enum_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_enum_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_ENUM_GEN_HPP)
|
||||
#define BOOST_TTI_ENUM_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_ENUM.
|
||||
/**
|
||||
name = the name of the enumeration.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_ENUM_GEN(name) \
|
||||
BOOST_PP_CAT(has_enum_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_ENUM_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/has_function_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_function_gen.hpp
vendored
Normal file
@ -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 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
|
31
vendor/boost/include/boost/tti/gen/has_function_template_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_function_template_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_TEMPLATE_GEN_HPP)
|
||||
#define BOOST_TTI_FUNCTION_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_FUNCTION_TEMPLATE.
|
||||
/**
|
||||
name = the name of the function template.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_FUNCTION_TEMPLATE_GEN(name) \
|
||||
BOOST_PP_CAT(has_function_template_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_FUNCTION_TEMPLATE_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/has_member_data_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_member_data_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_member_function_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_member_function_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_member_function_template_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_member_function_template_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_TEMPLATE_GEN_HPP)
|
||||
#define BOOST_TTI_MEMBER_FUNCTION_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_MEMBER_FUNCTION_TEMPLATE.
|
||||
/**
|
||||
name = the name of the member function template.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
|
||||
BOOST_PP_CAT(has_member_function_template_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_MEMBER_FUNCTION_TEMPLATE_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/has_static_member_data_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_static_member_data_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_static_member_function_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_static_member_function_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_static_member_function_template_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_static_member_function_template_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_TEMPLATE_GEN_HPP)
|
||||
#define BOOST_TTI_STATIC_MEMBER_FUNCTION_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_STATIC_MEMBER_FUNCTION_TEMPLATE.
|
||||
/**
|
||||
name = the name of the static member function template.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
|
||||
BOOST_PP_CAT(has_static_member_function_template_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/has_template_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_template_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_type_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_type_gen.hpp
vendored
Normal file
@ -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
|
31
vendor/boost/include/boost/tti/gen/has_union_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/has_union_gen.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2019
|
||||
// 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_UNION_GEN_HPP)
|
||||
#define BOOST_TTI_UNION_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_UNION.
|
||||
/**
|
||||
name = the name of the union.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_UNION_GEN(name) \
|
||||
BOOST_PP_CAT(has_union_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_UNION_GEN_HPP
|
31
vendor/boost/include/boost/tti/gen/member_type_gen.hpp
vendored
Normal file
31
vendor/boost/include/boost/tti/gen/member_type_gen.hpp
vendored
Normal file
@ -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
|
25
vendor/boost/include/boost/tti/gen/namespace_gen.hpp
vendored
Normal file
25
vendor/boost/include/boost/tti/gen/namespace_gen.hpp
vendored
Normal file
@ -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
|
Reference in New Issue
Block a user