Go to the documentation of this file.
34 #ifndef OCTOMAP_DEPRECATED_H
35 #define OCTOMAP_DEPRECATED_H
38 #ifndef OCTOMAP_DEPRECATED
40 #define OCTOMAP_DEPRECATED(func) func __attribute__ ((deprecated))
41 #elif defined(_MSC_VER)
42 #define OCTOMAP_DEPRECATED(func) __declspec(deprecated) func
44 #pragma message("WARNING: You need to implement OCTOMAP_DEPRECATED for this compiler")
45 #define OCTOMAP_DEPRECATED(func) func