myexport.h

来自「QT4的utils库源码包.解压后运行./configure配置,然后make.」· C头文件 代码 · 共 16 行

H
16
字号
#ifndef UTILS_EXPORT_H
#define UTILS_EXPORT_H

#include <qglobal.h>
/** This macro is only for building DLLs on windows. */
#ifndef Q_OS_WIN
#define UTILS_EXPORT
#elif defined(UTILS_DLL)
#define UTILS_EXPORT Q_DECL_EXPORT
#else
#define UTILS_EXPORT Q_DECL_IMPORT
#endif

#endif        //  #ifndef MYEXPORT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?