Go to the documentation of this file. 8 #ifndef __stir_deprecated_H__ 9 #define __stir_deprecated_H__ 18 #if defined(__GNUC__) || defined(__clang__) 19 # define STIR_DEPRECATED __attribute__((deprecated)) 20 #elif defined(_MSC_VER) 21 # define STIR_DEPRECATED __declspec(deprecated) 23 # pragma message("WARNING: You need to implement DEPRECATED for this compiler") 24 # define STIR_DEPRECATED 29 #endif // __stir_deprecated_H__