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.
17 lines
321 B
C
17 lines
321 B
C
/**
|
|
* @brief 接口声明
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-06
|
|
*/
|
|
#ifndef _PostGraphAdaptorAPI_H_
|
|
#define _PostGraphAdaptorAPI_H_
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
#ifdef PostGraphAdaptor_API
|
|
#define PostGraphAdaptorAPI Q_DECL_EXPORT
|
|
#else
|
|
#define PostGraphAdaptorAPI Q_DECL_IMPORT
|
|
#endif
|
|
#endif
|