2025-12-31 15:24:32 +08:00
|
|
|
#ifndef QDETAILS_VIEW_API_H
|
|
|
|
|
#define QDETAILS_VIEW_API_H
|
|
|
|
|
|
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2026-01-05 15:25:01 +08:00
|
|
|
# ifdef PROPERTY_EDITOR_STATIC_LIBRARY
|
2025-12-31 15:24:32 +08:00
|
|
|
# define QDETAILS_VIEW_API
|
|
|
|
|
# else
|
|
|
|
|
# ifdef QDETAILS_VIEW_SHARED_LIBRARY
|
|
|
|
|
# define QDETAILS_VIEW_API __declspec(dllexport)
|
|
|
|
|
# else
|
|
|
|
|
# define QDETAILS_VIEW_API __declspec(dllimport)
|
|
|
|
|
# endif
|
|
|
|
|
# endif
|
|
|
|
|
#else
|
|
|
|
|
# define QDETAILS_VIEW_API __attribute__((visibility("default")))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2026-01-05 15:25:01 +08:00
|
|
|
#endif // QDETAILS_VIEW_API_H
|