|
ros2_control - humble
|
Loading...
Searching...
No Matches
15#ifndef POSE_BROADCASTER__VISIBILITY_CONTROL_H_
16#define POSE_BROADCASTER__VISIBILITY_CONTROL_H_
21#if defined _WIN32 || defined __CYGWIN__
23#define POSE_BROADCASTER_EXPORT __attribute__((dllexport))
24#define POSE_BROADCASTER_IMPORT __attribute__((dllimport))
26#define POSE_BROADCASTER_EXPORT __declspec(dllexport)
27#define POSE_BROADCASTER_IMPORT __declspec(dllimport)
29#ifdef POSE_BROADCASTER_BUILDING_DLL
30#define POSE_BROADCASTER_PUBLIC POSE_BROADCASTER_EXPORT
32#define POSE_BROADCASTER_PUBLIC POSE_BROADCASTER_IMPORT
34#define POSE_BROADCASTER_PUBLIC_TYPE POSE_BROADCASTER_PUBLIC
35#define POSE_BROADCASTER_LOCAL
37#define POSE_BROADCASTER_EXPORT __attribute__((visibility("default")))
38#define POSE_BROADCASTER_IMPORT
40#define POSE_BROADCASTER_PUBLIC __attribute__((visibility("default")))
41#define POSE_BROADCASTER_LOCAL __attribute__((visibility("hidden")))
43#define POSE_BROADCASTER_PUBLIC
44#define POSE_BROADCASTER_LOCAL
46#define POSE_BROADCASTER_PUBLIC_TYPE