#pragma once

#include <QtCore/qglobal.h>

#  define Q_DECL_EXPORT     __attribute__((visibility("default")))
#  define Q_DECL_IMPORT     __attribute__((visibility("default")))

#if defined(AQSICOMMONSQT_LIBRARY)
#  define AQSICOMMONSQT_EXPORT Q_DECL_EXPORT
#else
#  define AQSICOMMONSQT_EXPORT Q_DECL_IMPORT
#endif

