-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: methylDragon <methylDragon@gmail.com>
- Loading branch information
1 parent
1924594
commit 883adf4
Showing
2 changed files
with
74 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (C) 2017 Open Source Robotics Foundation | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
/* | ||
* ========================================================================== | ||
* This file was automatically generated by CMake; do not modify it directly. | ||
* To modify this file, make changes to ign-cmake/cmake/Export.hh.in | ||
* ========================================================================== | ||
*/ | ||
|
||
#ifndef @export_base@_EXPORT_HH_ | ||
#define @export_base@_EXPORT_HH_ | ||
|
||
// The detail/Export.hh header is automatically generated by CMake, which only | ||
// provides the system-dependent implementations of these macros, with no | ||
// commentary or explanation, so we configure this public-facing header which | ||
// leverages the auto-generated macros but provides commentary for them. | ||
#include "@include_dir@/detail/Export.hh" | ||
|
||
// TODO(CH3): Remove this and this file (GzExport.hh.in) on tock | ||
// This is to allow for ignition- and gz- targets for the same lib to be found | ||
// together. (To support aliasing and ign -> gz ticktocking | ||
#include "@include_dir@/detail/GzExport.hh" | ||
|
||
|
||
#ifndef @export_base@_VISIBLE | ||
/// For @lib_name@ developers: Apply this macro to @lib_name@ | ||
/// functions and classes which consumers of this library will need to be able | ||
/// to call from their own programs or libraries. | ||
#define @export_base@_VISIBLE \ | ||
DETAIL_@export_base@_VISIBLE | ||
#endif | ||
|
||
|
||
#ifndef @export_base@_HIDDEN | ||
/// For @lib_name@ developers: Apply this macro to @lib_name@ | ||
/// functions and classes which must not be used by consumers of this library. | ||
/// By default, this property is applied to all classes and functions which are | ||
/// not tagged with @export_base@_VISIBLE, so this does not | ||
/// generally need to be used. | ||
#define @export_base@_HIDDEN \ | ||
DETAIL_@export_base@_HIDDEN | ||
#endif | ||
|
||
|
||
#ifndef IGN_DEPRECATED | ||
/// For @lib_name@ developers: Use this macro to indicate that a | ||
/// function or class has been deprecated and should no longer be used. A | ||
/// version should be specified to provide context to the user about when the | ||
/// function became deprecated. | ||
#define IGN_DEPRECATED(version) IGN_DEPRECATED_ALL_VERSIONS | ||
#endif | ||
|
||
#endif |
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