Go to the documentation of this file.
2 #ifndef polito_EXPORT_H
3 #define polito_EXPORT_H
5 #ifdef polito_BUILT_AS_STATIC
7 # define POLITO_NO_EXPORT
10 # ifdef polito_EXPORTS
12 # define polito_EXPORT __attribute__((visibility("default")))
15 # define polito_EXPORT __attribute__((visibility("default")))
19 # ifndef POLITO_NO_EXPORT
20 # define POLITO_NO_EXPORT __attribute__((visibility("hidden")))
24 #ifndef POLITO_DEPRECATED
25 # define POLITO_DEPRECATED __attribute__ ((__deprecated__))
28 #ifndef POLITO_DEPRECATED_EXPORT
29 # define POLITO_DEPRECATED_EXPORT polito_EXPORT POLITO_DEPRECATED
32 #ifndef POLITO_DEPRECATED_NO_EXPORT
33 # define POLITO_DEPRECATED_NO_EXPORT POLITO_NO_EXPORT POLITO_DEPRECATED
37 # ifndef POLITO_NO_DEPRECATED
38 # define POLITO_NO_DEPRECATED