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.
21 lines
395 B
C
21 lines
395 B
C
/**
|
|
*
|
|
* @file FITKRenderWindowVTKAPI.h
|
|
* @brief 导入导出接口声明
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-03-08
|
|
*
|
|
*/
|
|
#ifndef _FITKRenderWindowVTKAPI_H_
|
|
#define _FITKRenderWindowVTKAPI_H_
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
#if defined(FITKRenderWindowVTK_API)
|
|
#define FITKRenderWindowVTKAPI Q_DECL_EXPORT
|
|
#else
|
|
#define FITKRenderWindowVTKAPI Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif
|