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.

20 lines
376 B
C

/**
* @file OperatorsInterfaceAPI.h
* @brief 接口声明
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-03-27
*/
#ifndef _OperatorsInterfaceAPI_H_
#define _OperatorsInterfaceAPI_H_
#include <QtCore/QtGlobal>
#ifdef OperatorsInterface_API
#define OperatorsInterfaceAPI Q_DECL_EXPORT
#else
#define OperatorsInterfaceAPI Q_DECL_IMPORT
#endif
#endif