Go to the documentation of this file.
35 #ifndef ROSPARAM_SHORTCUTS_DEPRECATION_H
36 #define ROSPARAM_SHORTCUTS_DEPRECATION_H
42 #define ROSPARAM_SHORTCUTS_DEPRECATED __attribute__((deprecated))
43 #elif defined(_MSC_VER)
44 #define ROSPARAM_SHORTCUTS_DEPRECATED __declspec(deprecated)
45 #elif defined(__clang__)
46 #define ROSPARAM_SHORTCUTS_DEPRECATED __attribute__((deprecated("Use of this method is deprecated")))
48 #define ROSPARAM_SHORTCUTS_DEPRECATED
51 #endif // ROSPARAM_SHORTCUTS_DEPRECATION_H