concept_macros.hppGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef ADOBE_HAS_CPLUS0X_CONCEPTS_MACROS_HPP
00010 #define ADOBE_HAS_CPLUS0X_CONCEPTS_MACROS_HPP
00011
00012 #ifdef __GXX_CONCEPTS__
00013
00014 #endif
00015
00016 #if __ADOBE_COMPILER_CONCEPTS__
00017 #define ADOBE_HAS_CPLUS0X_CONCEPTS 1
00018 #define ADOBE_REQUIRES(...) requires __VA_ARGS__
00019 #define ADOBE_CLASS_REQUIRE(cls, ns, c)
00020 #else
00021
00022 #define ADOBE_REQUIRES(...)
00023 #define ADOBE_CLASS_REQUIRE(cls, ns, c) BOOST_CLASS_REQUIRE(cls, ns, c)
00024
00025 #endif
00026
00027 #endif
|