This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qad/qad_export.h
Бычков Андрей 562b9067c4 qad_export.h
git-svn-id: svn://db.shs.com.ru/libs@720 a8b55f48-bf90-11e4-a774-851b48703e85
2020-02-28 10:05:26 +00:00

17 lines
271 B
C

#ifndef QAD_EXPORT_H
#define QAD_EXPORT_H
#include <QtCore/QtGlobal>
#ifdef QAD_STATIC_DEFINE
# define QAD_EXPORT
#else
# ifdef QAD_SHARED_DEFINE
# define QAD_EXPORT Q_DECL_EXPORT
# else
# define QAD_EXPORT Q_DECL_IMPORT
# endif
#endif
#endif //QAD_EXPORT_H