mirror of
https://github.com/Relintai/rcpp_fw_static.git
synced 2025-04-20 17:21:17 +02:00
32 lines
576 B
C++
32 lines
576 B
C++
/**
|
|
*
|
|
* any.h
|
|
* An Tao
|
|
*
|
|
* Copyright 2018, An Tao. All rights reserved.
|
|
* https://github.com/an-tao/drogon
|
|
* Use of this source code is governed by a MIT license
|
|
* that can be found in the License file.
|
|
*
|
|
* Drogon
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#if __cplusplus >= 201703L || (defined _MSC_VER && _MSC_VER > 1900)
|
|
#include <any>
|
|
#else
|
|
#include <boost/any.hpp>
|
|
#endif
|
|
|
|
namespace drogon
|
|
{
|
|
#if __cplusplus >= 201703L || (defined _MSC_VER && _MSC_VER > 1900)
|
|
using std::any;
|
|
using std::any_cast;
|
|
#else
|
|
using boost::any;
|
|
using boost::any_cast;
|
|
#endif
|
|
} // namespace drogon
|