Add boost and cpprestsdk

This commit is contained in:
2025-05-28 13:59:55 -03:00
parent d3fb88a65d
commit 7079ba75f2
14583 changed files with 3063824 additions and 1 deletions

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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