
#ifndef OSGQOPENGL_EXPORT_H
#define OSGQOPENGL_EXPORT_H

#ifdef OSGQOPENGL_STATIC_DEFINE
#  define OSGQOPENGL_EXPORT
#  define OSGQOPENGL_NO_EXPORT
#else
#  ifndef OSGQOPENGL_EXPORT
#    ifdef osgQOpenGL_EXPORTS
        /* We are building this library */
#      define OSGQOPENGL_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define OSGQOPENGL_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

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

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

#ifndef OSGQOPENGL_DEPRECATED_EXPORT
#  define OSGQOPENGL_DEPRECATED_EXPORT OSGQOPENGL_EXPORT OSGQOPENGL_DEPRECATED
#endif

#ifndef OSGQOPENGL_DEPRECATED_NO_EXPORT
#  define OSGQOPENGL_DEPRECATED_NO_EXPORT OSGQOPENGL_NO_EXPORT OSGQOPENGL_DEPRECATED
#endif

/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef OSGQOPENGL_NO_DEPRECATED
#    define OSGQOPENGL_NO_DEPRECATED
#  endif
#endif

#endif /* OSGQOPENGL_EXPORT_H */
