visibility_control.hpp
Go to the documentation of this file.
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2017, Open Source Robotics Foundation, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of the copyright holder nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34 
35 /* This header must be included by all urdf headers which declare symbols
36  * which are defined in the urdf library. When not building the urdf
37  * library, i.e. when using the headers in other package's code, the contents
38  * of this header change the visibility of certain symbols which the urdf
39  * library cannot have, but the consuming code must have inorder to link.
40  */
41 
42 #ifndef URDF__VISIBILITY_CONTROL_HPP_
43 #define URDF__VISIBILITY_CONTROL_HPP_
44 
45 // This logic was borrowed (then namespaced) from the examples on the gcc wiki:
46 // https://gcc.gnu.org/wiki/Visibility
47 
48 #if defined _WIN32 || defined __CYGWIN__
49  #ifdef __GNUC__
50  #define URDF_EXPORT __attribute__ ((dllexport))
51  #define URDF_IMPORT __attribute__ ((dllimport))
52  #else
53  #define URDF_EXPORT __declspec(dllexport)
54  #define URDF_IMPORT __declspec(dllimport)
55  #endif
56  #ifdef URDF_BUILDING_LIBRARY
57  #define URDF_PUBLIC URDF_EXPORT
58  #else
59  #define URDF_PUBLIC URDF_IMPORT
60  #endif
61  #define URDF_PUBLIC_TYPE URDF_PUBLIC
62  #define URDF_LOCAL
63 #else
64  #define URDF_EXPORT __attribute__ ((visibility("default")))
65  #define URDF_IMPORT
66  #if __GNUC__ >= 4
67  #define URDF_PUBLIC __attribute__ ((visibility("default")))
68  #define URDF_LOCAL __attribute__ ((visibility("hidden")))
69  #else
70  #define URDF_PUBLIC
71  #define URDF_LOCAL
72  #endif
73  #define URDF_PUBLIC_TYPE
74 #endif
75 
76 #endif // URDF__VISIBILITY_CONTROL_HPP_


urdf
Author(s): Ioan Sucan , Jackie Kay
autogenerated on Mon Jun 10 2019 15:38:18