#ifndef TTKUTILCOMMANDS_EXPORT_H #define TTKUTILCOMMANDS_EXPORT_H #ifdef ttkUtilCommands_BUILT_AS_STATIC # define TTKUTILCOMMANDS_EXPORT # define TTKUTILCOMMANDS_NO_EXPORT #else # ifndef TTKUTILCOMMANDS_EXPORT # ifdef ttkUtilCommands_EXPORTS /* We are building this library */ # define TTKUTILCOMMANDS_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define TTKUTILCOMMANDS_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef TTKUTILCOMMANDS_NO_EXPORT # define TTKUTILCOMMANDS_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef TTKUTILCOMMANDS_DEPRECATED # define TTKUTILCOMMANDS_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef TTKUTILCOMMANDS_DEPRECATED_EXPORT # define TTKUTILCOMMANDS_DEPRECATED_EXPORT TTKUTILCOMMANDS_EXPORT TTKUTILCOMMANDS_DEPRECATED #endif #ifndef TTKUTILCOMMANDS_DEPRECATED_NO_EXPORT # define TTKUTILCOMMANDS_DEPRECATED_NO_EXPORT TTKUTILCOMMANDS_NO_EXPORT TTKUTILCOMMANDS_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef TTKUTILCOMMANDS_NO_DEPRECATED # define TTKUTILCOMMANDS_NO_DEPRECATED # endif #endif #endif /* TTKUTILCOMMANDS_EXPORT_H */