#ifndef ITKPROGRAMFACTORY_EXPORT_H #define ITKPROGRAMFACTORY_EXPORT_H #ifdef ITKProgramFactory_BUILT_AS_STATIC # define ITKPROGRAMFACTORY_EXPORT # define ITKPROGRAMFACTORY_NO_EXPORT #else # ifndef ITKPROGRAMFACTORY_EXPORT # ifdef ITKProgramFactory_EXPORTS /* We are building this library */ # define ITKPROGRAMFACTORY_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKPROGRAMFACTORY_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKPROGRAMFACTORY_NO_EXPORT # define ITKPROGRAMFACTORY_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKPROGRAMFACTORY_DEPRECATED # define ITKPROGRAMFACTORY_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKPROGRAMFACTORY_DEPRECATED_EXPORT # define ITKPROGRAMFACTORY_DEPRECATED_EXPORT ITKPROGRAMFACTORY_EXPORT ITKPROGRAMFACTORY_DEPRECATED #endif #ifndef ITKPROGRAMFACTORY_DEPRECATED_NO_EXPORT # define ITKPROGRAMFACTORY_DEPRECATED_NO_EXPORT ITKPROGRAMFACTORY_NO_EXPORT ITKPROGRAMFACTORY_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKPROGRAMFACTORY_NO_DEPRECATED # define ITKPROGRAMFACTORY_NO_DEPRECATED # endif #endif #endif /* ITKPROGRAMFACTORY_EXPORT_H */