
Go to the documentation of this file. 2 #ifndef LOGURU_EXPORT_H 3 #define LOGURU_EXPORT_H 5 #ifdef LOGURU_STATIC_DEFINE 7 # define LOGURU_NO_EXPORT 10 # ifdef loguru_EXPORTS 12 # define LOGURU_EXPORT __attribute__((visibility("default"))) 15 # define LOGURU_EXPORT __attribute__((visibility("default"))) 19 # ifndef LOGURU_NO_EXPORT 20 # define LOGURU_NO_EXPORT __attribute__((visibility("hidden"))) 24 #ifndef LOGURU_DEPRECATED 25 # define LOGURU_DEPRECATED __attribute__ ((__deprecated__)) 28 #ifndef LOGURU_DEPRECATED_EXPORT 29 # define LOGURU_DEPRECATED_EXPORT LOGURU_EXPORT LOGURU_DEPRECATED 32 #ifndef LOGURU_DEPRECATED_NO_EXPORT 33 # define LOGURU_DEPRECATED_NO_EXPORT LOGURU_NO_EXPORT LOGURU_DEPRECATED 37 # ifndef LOGURU_NO_DEPRECATED 38 # define LOGURU_NO_DEPRECATED