Macros
ecl/config/macros.hpp File Reference
#include <ecl/config/ecl.hpp>
Include dependency graph for ecl/config/macros.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define ECL_CXX11_NOT_FOUND
 C++11 support is available. More...
 
#define ECL_DEPRECATED
 Deprecated compiler warnings. More...
 
#define ECL_DONT_INLINE
 Prevents a function from being inlined. More...
 
#define ECL_HELPER_EXPORT
 Declare public visibility for libraries. More...
 
#define ECL_HELPER_IMPORT
 
#define ECL_HELPER_LOCAL
 
#define ECL_LOCAL
 
#define ECL_PUBLIC
 

Macro Definition Documentation

#define ECL_HELPER_EXPORT

Declare public visibility for libraries.

This emits (in a cross platform way) the required symbols for setting whether a function/class should be visible or hidden. Note only does this protect the private parts of your library, but it can also greatly speed up the linking process.

To check what symbols are being exported for a gnu library,

1 nm -C -D <library>.so

Usage:

Each package needs to create it's own macro to make use of the macro that cmake defines for library targets:

1 #ifdef ROS_BUILD_SHARED_LIBS // ros is being built around shared libraries
2  #ifdef ecl_common_EXPORTS // we are building a shared lib/dll
3  #define ecl_common_PUBLIC ROS_HELPER_EXPORT
4  #else // we are using shared lib/dll
5  #define ecl_common_PUBLIC ROS_HELPER_IMPORT
6  #endif
7 #else // ros is being built around static libraries
8  #define ecl_common_DECL
9 #endif

And use it alongside class or function definitions:

1 extern "C" ecl_common_PUBLIC void function(int a);
2 class ecl_common_PUBLIC SomeClass {
3  int c;
4  ecl_common_LOCAL void privateMethod(); // Only for use within this DSO
5 public:
6  Person(int _c) : c(_c) { }
7  static void foo(int a);
8 };
See also
ECL_HELPER_IMPORT, ECL_HELPER_LOCAL

Definition at line 163 of file ecl/config/macros.hpp.

#define ECL_HELPER_IMPORT
See also
ECL_HELPER_EXPORT, ECL_HELPER_LOCAL

Definition at line 162 of file ecl/config/macros.hpp.

#define ECL_HELPER_LOCAL
See also
ECL_HELPER_EXPORT, ECL_HELPER_IMPORT

Definition at line 164 of file ecl/config/macros.hpp.

#define ECL_LOCAL

Definition at line 170 of file ecl/config/macros.hpp.

#define ECL_PUBLIC

Definition at line 169 of file ecl/config/macros.hpp.



xbot_driver
Author(s): Roc, wangpeng@droid.ac.cn
autogenerated on Sat Oct 10 2020 03:27:38