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.
AppFlow/GUIWidget/GUIWidgetAPI.h

19 lines
345 B
C

/**
* @file GUIWidgetAPI.h
* @brief 接口宏声明
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-03-05
*/
#ifndef __GUIWIDGETAPI_H__
#define __GUIWIDGETAPI_H__
#include <QtCore/QtGlobal>
#ifdef GUIWidget_API
#define GUIWIDGETAPI Q_DECL_EXPORT
#else
#define GUIWIDGETAPI Q_DECL_IMPORT
#endif
#endif // __GUIWIDGETAPI_H__