Go to the documentation of this file.
13 #ifndef TLX_DEFINE_DEPRECATED_HEADER
14 #define TLX_DEFINE_DEPRECATED_HEADER
22 #define TLX_DEPRECATED(x) x
23 #elif defined(_MSC_VER)
24 #define TLX_DEPRECATED(x) __declspec(deprecated)x
25 #elif defined(__clang__) || defined(__GNUG__)
26 #define TLX_DEPRECATED(x) x __attribute__ ((deprecated))
29 #define TLX_DEPRECATED_FUNC_DEF(x) TLX_DEPRECATED(x); x