Your IP : 216.73.216.48
#ifndef GRANTLEE_GUI_EXPORT_H
#define GRANTLEE_GUI_EXPORT_H
#ifdef GRANTLEE_GUI_STATIC_DEFINE
# define GRANTLEE_GUI_EXPORT
# define GRANTLEE_GUI_NO_EXPORT
#else
# ifndef GRANTLEE_GUI_EXPORT
# ifdef grantlee_gui_EXPORTS
/* We are building this library */
# define GRANTLEE_GUI_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define GRANTLEE_GUI_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef GRANTLEE_GUI_NO_EXPORT
# define GRANTLEE_GUI_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef GRANTLEE_GUI_DEPRECATED
# define GRANTLEE_GUI_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef GRANTLEE_GUI_DEPRECATED_EXPORT
# define GRANTLEE_GUI_DEPRECATED_EXPORT GRANTLEE_GUI_EXPORT GRANTLEE_GUI_DEPRECATED
#endif
#ifndef GRANTLEE_GUI_DEPRECATED_NO_EXPORT
# define GRANTLEE_GUI_DEPRECATED_NO_EXPORT GRANTLEE_GUI_NO_EXPORT GRANTLEE_GUI_DEPRECATED
#endif
#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define GRANTLEE_GUI_NO_DEPRECATED
#endif
#endif