 |
RoboDK Plug-In Interface
|
Loading...
Searching...
No Matches
30#ifndef ROBODK_DEPRECATED_H
31#define ROBODK_DEPRECATED_H
34#ifndef ROBODK_DEPRECATED
35# if (defined(_MSC_VER) && _MSC_VER <= 1900) || defined(__MINGW64__)
36# define ROBODK_DEPRECATED(text) __declspec(deprecated(text))
37# elif defined __GNUC__
38# define ROBODK_DEPRECATED(text) __attribute__((deprecated))
40# define ROBODK_DEPRECATED(text) [[deprecated(text)]]