📄 myexport.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -