Go to the documentation of this file.
17 #ifndef _GAZEBO_VISIBLE_HH_
18 #define _GAZEBO_VISIBLE_HH_
28 #if defined _WIN32 || defined __CYGWIN__
31 #define GAZEBO_VISIBLE __attribute__ ((dllexport))
33 #define GAZEBO_VISIBLE __declspec(dllexport)
37 #define GAZEBO_VISIBLE __attribute__ ((dllimport))
39 #define GAZEBO_VISIBLE __declspec(dllimport)
45 #define GAZEBO_VISIBLE __attribute__ ((visibility ("default")))
46 #define GAZEBO_HIDDEN __attribute__ ((visibility ("hidden")))
48 #define GAZEBO_VISIBLE