fsfw/contrib/fsfw_contrib/etl-20.39.4/include/etl/private/choose_namespace.h

87 lines
3.4 KiB
C

///\file
/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2019 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#ifndef ETL_CHOOSE_NAMESPACE_INCLUDED
#define ETL_CHOOSE_NAMESPACE_INCLUDED
#undef ETL_OR_STD
#undef ETL_OR_STD11
#undef ETL_OR_STD14
#if ETL_NOT_USING_STL && !defined(ETL_IN_UNIT_TEST)
// If we're not using the STL and we are not unit testing, then use the ETL's definitions under the etl namespace
#define ETL_OR_STD etl
#define ETL_USING_STD_NAMESPACE 0
#define ETL_USING_ETL_NAMESPACE 1
#else
// We will use the STL's definitions under the std namespace
#define ETL_OR_STD std
#define ETL_USING_STD_NAMESPACE 1
#define ETL_USING_ETL_NAMESPACE 0
#endif
#if (ETL_NOT_USING_STL && !defined(ETL_IN_UNIT_TEST)) || ETL_CPP11_NOT_SUPPORTED
// If we're not using the STL and we are not unit testing or C++11 is not supported, then use the ETL's definitions under the etl namespace
#define ETL_OR_STD11 etl
#define ETL_USING_STD11_NAMESPACE 0
#define ETL_USING_ETL11_NAMESPACE 1
#else
// We will use the STL's definitions under the std namespace
#define ETL_OR_STD11 std
#define ETL_USING_STD11_NAMESPACE 1
#define ETL_USING_ETL11_NAMESPACE 0
#endif
#if (ETL_NOT_USING_STL && !defined(ETL_IN_UNIT_TEST)) || ETL_CPP14_NOT_SUPPORTED
// If we're not using the STL and we are not unit testing or C++14 is not supported, then use the ETL's definitions under the etl namespace
#define ETL_OR_STD14 etl
#define ETL_USING_STD14_NAMESPACE 0
#define ETL_USING_ETL14_NAMESPACE 1
#else
// We will use the STL's definitions under the std namespace
#define ETL_OR_STD14 std
#define ETL_USING_STD14_NAMESPACE 1
#define ETL_USING_ETL14_NAMESPACE 0
#endif
#if (ETL_NOT_USING_STL && !defined(ETL_IN_UNIT_TEST)) || ETL_CPP17_NOT_SUPPORTED
// If we're not using the STL and we are not unit testing or C++17 is not supported, then use the ETL's definitions under the etl namespace
#define ETL_OR_STD17 etl
#define ETL_USING_STD17_NAMESPACE 0
#define ETL_USING_ETL17_NAMESPACE 1
#else
// We will use the STL's definitions under the std namespace
#define ETL_OR_STD17 std
#define ETL_USING_STD17_NAMESPACE 1
#define ETL_USING_ETL17_NAMESPACE 0
#endif
#endif