
#ifndef BREEZEICONS_EXPORT_H
#define BREEZEICONS_EXPORT_H

#ifdef BREEZEICONS_STATIC_DEFINE
#  define BREEZEICONS_EXPORT
#  define BREEZEICONS_NO_EXPORT
#else
#  ifndef BREEZEICONS_EXPORT
#    ifdef KF6BreezeIcons_EXPORTS
        /* We are building this library */
#      define BREEZEICONS_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define BREEZEICONS_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

#  ifndef BREEZEICONS_NO_EXPORT
#    define BREEZEICONS_NO_EXPORT __attribute__((visibility("hidden")))
#  endif
#endif

#ifndef BREEZEICONS_DECL_DEPRECATED
#  define BREEZEICONS_DECL_DEPRECATED __attribute__ ((__deprecated__))
#endif

#ifndef BREEZEICONS_DECL_DEPRECATED_EXPORT
#  define BREEZEICONS_DECL_DEPRECATED_EXPORT BREEZEICONS_EXPORT BREEZEICONS_DECL_DEPRECATED
#endif

#ifndef BREEZEICONS_DECL_DEPRECATED_NO_EXPORT
#  define BREEZEICONS_DECL_DEPRECATED_NO_EXPORT BREEZEICONS_NO_EXPORT BREEZEICONS_DECL_DEPRECATED
#endif

/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef BREEZEICONS_NO_DEPRECATED
#    define BREEZEICONS_NO_DEPRECATED
#  endif
#endif
#include <breezeicons_version.h>

#undef BREEZEICONS_DECL_DEPRECATED
#define BREEZEICONS_DECL_DEPRECATED [[deprecated]]

#undef BREEZEICONS_DECL_DEPRECATED_EXPORT
#define BREEZEICONS_DECL_DEPRECATED_EXPORT BREEZEICONS_EXPORT BREEZEICONS_DECL_DEPRECATED

#undef BREEZEICONS_DECL_DEPRECATED_NO_EXPORT
#define BREEZEICONS_DECL_DEPRECATED_NO_EXPORT BREEZEICONS_NO_EXPORT BREEZEICONS_DECL_DEPRECATED

#define BREEZEICONS_DECL_DEPRECATED_TEXT(text) [[deprecated(text)]]

/* Take any defaults from group settings */
#if !defined(BREEZEICONS_NO_DEPRECATED) && !defined(BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT)
#  ifdef KF_NO_DEPRECATED
#    define BREEZEICONS_NO_DEPRECATED
#  elif defined(KF_DISABLE_DEPRECATED_BEFORE_AND_AT)
#    define BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT KF_DISABLE_DEPRECATED_BEFORE_AND_AT
#  endif
#endif
#if !defined(BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT) && defined(KF_DISABLE_DEPRECATED_BEFORE_AND_AT)
#  define BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT KF_DISABLE_DEPRECATED_BEFORE_AND_AT
#endif

#if !defined(BREEZEICONS_NO_DEPRECATED_WARNINGS) && !defined(BREEZEICONS_DEPRECATED_WARNINGS_SINCE)
#  ifdef KF_NO_DEPRECATED_WARNINGS
#    define BREEZEICONS_NO_DEPRECATED_WARNINGS
#  elif defined(KF_DEPRECATED_WARNINGS_SINCE)
#    define BREEZEICONS_DEPRECATED_WARNINGS_SINCE KF_DEPRECATED_WARNINGS_SINCE
#  endif
#endif
#if !defined(BREEZEICONS_DEPRECATED_WARNINGS_SINCE) && defined(KF_DEPRECATED_WARNINGS_SINCE)
#  define BREEZEICONS_DEPRECATED_WARNINGS_SINCE KF_DEPRECATED_WARNINGS_SINCE
#endif

#if defined(BREEZEICONS_NO_DEPRECATED)
#  undef BREEZEICONS_DEPRECATED
#  define BREEZEICONS_DEPRECATED_EXPORT BREEZEICONS_EXPORT
#  define BREEZEICONS_DEPRECATED_NO_EXPORT BREEZEICONS_NO_EXPORT
#elif defined(BREEZEICONS_NO_DEPRECATED_WARNINGS)
#  define BREEZEICONS_DEPRECATED
#  define BREEZEICONS_DEPRECATED_EXPORT BREEZEICONS_EXPORT
#  define BREEZEICONS_DEPRECATED_NO_EXPORT BREEZEICONS_NO_EXPORT
#else
#  define BREEZEICONS_DEPRECATED BREEZEICONS_DECL_DEPRECATED
#  define BREEZEICONS_DEPRECATED_EXPORT BREEZEICONS_DECL_DEPRECATED_EXPORT
#  define BREEZEICONS_DEPRECATED_NO_EXPORT BREEZEICONS_DECL_DEPRECATED_NO_EXPORT
#endif

/* No deprecated API had been removed from build */
#define BREEZEICONS_EXCLUDE_DEPRECATED_BEFORE_AND_AT 0

#define BREEZEICONS_BUILD_DEPRECATED_SINCE(major, minor) 1

#ifdef BREEZEICONS_NO_DEPRECATED
#  define BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT BREEZEICONS_VERSION
#endif
#ifdef BREEZEICONS_NO_DEPRECATED_WARNINGS
#  define BREEZEICONS_DEPRECATED_WARNINGS_SINCE 0
#endif

#ifndef BREEZEICONS_DEPRECATED_WARNINGS_SINCE
#  ifdef BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT
#    define BREEZEICONS_DEPRECATED_WARNINGS_SINCE BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT
#  else
#    define BREEZEICONS_DEPRECATED_WARNINGS_SINCE BREEZEICONS_VERSION
#  endif
#endif

#ifndef BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT
#  define BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT 0x60000
#endif

#ifdef BREEZEICONS_DEPRECATED
#  define BREEZEICONS_ENABLE_DEPRECATED_SINCE(major, minor) (((major<<16)|(minor<<8)) > BREEZEICONS_DISABLE_DEPRECATED_BEFORE_AND_AT)
#else
#  define BREEZEICONS_ENABLE_DEPRECATED_SINCE(major, minor) 0
#endif

#endif /* BREEZEICONS_EXPORT_H */
