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.
19 lines
333 B
C
19 lines
333 B
C
/**
|
|
* @file DrawerWidgetAPI.h
|
|
* @brief 自定义抽屉组件接口文件
|
|
* @author XuXinwei
|
|
* @version 1.0.0
|
|
*/
|
|
#ifndef _DRAWER_WIDGET_API_H_
|
|
#define _DRAWER_WIDGET_API_H_
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(FITKWidget_API)
|
|
# define FITKWidgetAPI Q_DECL_EXPORT
|
|
#else
|
|
# define FITKWidgetAPI Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif
|