You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
332 B
C

/**
*
* @file FITKCoreAPI.h
* @brief 导入导出库声明
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-02-22
*
*/
#ifndef _FITKCORE_API_H_
#define _FITKCORE_API_H_
#include <QtCore/QtGlobal>
#if defined(FITKCore_API)
#define FITKCoreAPI Q_DECL_EXPORT
#else
#define FITKCoreAPI Q_DECL_IMPORT
#endif
#endif