-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add visibility_control.h to clearpath_hardware_interfaces, update inc…
…ludes to reference this file
- Loading branch information
1 parent
d240de9
commit 4a51281
Showing
6 changed files
with
54 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
clearpath_hardware_interfaces/include/clearpath_hardware_interfaces/visibility_control.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2017 Open Source Robotics Foundation, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef HARDWARE_INTERFACE__VISIBILITY_CONTROL_H_ | ||
#define HARDWARE_INTERFACE__VISIBILITY_CONTROL_H_ | ||
|
||
// This logic was borrowed (then namespaced) from the examples on the gcc wiki: | ||
// https://gcc.gnu.org/wiki/Visibility | ||
|
||
#if defined _WIN32 || defined __CYGWIN__ | ||
#ifdef __GNUC__ | ||
#define HARDWARE_INTERFACE_EXPORT __attribute__((dllexport)) | ||
#define HARDWARE_INTERFACE_IMPORT __attribute__((dllimport)) | ||
#else | ||
#define HARDWARE_INTERFACE_EXPORT __declspec(dllexport) | ||
#define HARDWARE_INTERFACE_IMPORT __declspec(dllimport) | ||
#endif | ||
#ifdef HARDWARE_INTERFACE_BUILDING_DLL | ||
#define HARDWARE_INTERFACE_PUBLIC HARDWARE_INTERFACE_EXPORT | ||
#else | ||
#define HARDWARE_INTERFACE_PUBLIC HARDWARE_INTERFACE_IMPORT | ||
#endif | ||
#define HARDWARE_INTERFACE_PUBLIC_TYPE HARDWARE_INTERFACE_PUBLIC | ||
#define HARDWARE_INTERFACE_LOCAL | ||
#else | ||
#define HARDWARE_INTERFACE_EXPORT __attribute__((visibility("default"))) | ||
#define HARDWARE_INTERFACE_IMPORT | ||
#if __GNUC__ >= 4 | ||
#define HARDWARE_INTERFACE_PUBLIC __attribute__((visibility("default"))) | ||
#define HARDWARE_INTERFACE_LOCAL __attribute__((visibility("hidden"))) | ||
#else | ||
#define HARDWARE_INTERFACE_PUBLIC | ||
#define HARDWARE_INTERFACE_LOCAL | ||
#endif | ||
#define HARDWARE_INTERFACE_PUBLIC_TYPE | ||
#endif | ||
|
||
#endif // HARDWARE_INTERFACE__VISIBILITY_CONTROL_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters