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
340 B
C
22 lines
340 B
C
/**
|
|
*
|
|
* @file FITKPythonAPI.h
|
|
* @brief 导入导出库声明
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-02-26
|
|
*
|
|
*/
|
|
#ifndef _FITKPYTHON_API_H_
|
|
#define _FITKPYTHON_API_H_
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
|
|
#if defined(FITKPython_API)
|
|
#define FITKPythonAPI Q_DECL_EXPORT
|
|
#else
|
|
#define FITKPythonAPI Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif
|