-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* package name fixes * rename files and dirs --------- Co-authored-by: Aron Svastits <svastits1@gmail.com>
- Loading branch information
Showing
20 changed files
with
143 additions
and
143 deletions.
There are no files selected for viewing
49 changes: 0 additions & 49 deletions
49
controllers/control_mode_handler/include/control_mode_handler/visibility_control.h
This file was deleted.
Oops, something went wrong.
49 changes: 0 additions & 49 deletions
49
controllers/event_broadcaster/include/event_broadcaster/visibility_control.h
This file was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
...ntrol_mode_handler/controller_plugins.xml → ...ntrol_mode_handler/controller_plugins.xml
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
controllers/kuka_control_mode_handler/include/kuka_control_mode_handler/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 2023 Aron Svastits | ||
// | ||
// 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 KUKA_CONTROL_MODE_HANDLER__VISIBILITY_CONTROL_H_ | ||
#define KUKA_CONTROL_MODE_HANDLER__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 KUKA_CONTROL_MODE_HANDLER_EXPORT __attribute__((dllexport)) | ||
#define KUKA_CONTROL_MODE_HANDLER_IMPORT __attribute__((dllimport)) | ||
#else | ||
#define KUKA_CONTROL_MODE_HANDLER_EXPORT __declspec(dllexport) | ||
#define KUKA_CONTROL_MODE_HANDLER_IMPORT __declspec(dllimport) | ||
#endif | ||
#ifdef KUKA_CONTROL_MODE_HANDLER_BUILDING_LIBRARY | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC KUKA_CONTROL_MODE_HANDLER_EXPORT | ||
#else | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC KUKA_CONTROL_MODE_HANDLER_IMPORT | ||
#endif | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC_TYPE KUKA_CONTROL_MODE_HANDLER_PUBLIC | ||
#define KUKA_CONTROL_MODE_HANDLER_LOCAL | ||
#else | ||
#define KUKA_CONTROL_MODE_HANDLER_EXPORT __attribute__((visibility("default"))) | ||
#define KUKA_CONTROL_MODE_HANDLER_IMPORT | ||
#if __GNUC__ >= 4 | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC __attribute__((visibility("default"))) | ||
#define KUKA_CONTROL_MODE_HANDLER_LOCAL __attribute__((visibility("hidden"))) | ||
#else | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC | ||
#define KUKA_CONTROL_MODE_HANDLER_LOCAL | ||
#endif | ||
#define KUKA_CONTROL_MODE_HANDLER_PUBLIC_TYPE | ||
#endif | ||
|
||
#endif // KUKA_CONTROL_MODE_HANDLER__VISIBILITY_CONTROL_H_ |
2 changes: 1 addition & 1 deletion
2
controllers/control_mode_handler/package.xml → ...ers/kuka_control_mode_handler/package.xml
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
2 changes: 1 addition & 1 deletion
2
.../event_broadcaster/controller_plugins.xml → ..._event_broadcaster/controller_plugins.xml
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
Oops, something went wrong.