31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <AH/Settings/Warnings.hpp>
|
|
|
|
#define USE_CS_NAMESPACE
|
|
#define CS_NAMESPACE_NAME cs
|
|
|
|
// ========================================================================== //
|
|
|
|
#ifdef USE_CS_NAMESPACE
|
|
#define BEGIN_CS_NAMESPACE \
|
|
AH_DIAGNOSTIC_WERROR() \
|
|
namespace CS_NAMESPACE_NAME {
|
|
#define END_CS_NAMESPACE \
|
|
} \
|
|
AH_DIAGNOSTIC_POP()
|
|
#define USING_CS_NAMESPACE using namespace CS_NAMESPACE_NAME
|
|
#else
|
|
#define BEGIN_CS_NAMESPACE
|
|
#define END_CS_NAMESPACE
|
|
#define USING_CS_NAMESPACE
|
|
#endif
|
|
|
|
#if __cplusplus >= 201402L && \
|
|
(!defined(__GNUC__) || __GNUC__ > 6 || defined(__clang__))
|
|
#define CS_DEPREC(msg) [[deprecated(msg)]]
|
|
#elif (defined(__GNUC__) && __GNUC__ > 6) || defined(__clang__)
|
|
#define CS_DEPREC(msg) __attribute__((deprecated(msg)))
|
|
#else
|
|
#define CS_DEPREC(...)
|
|
#endif |