config.h
来自「基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等」· C头文件 代码 · 共 21 行
H
21 行
#ifndef CPPUNIT_QTUI_CONFIG_H#define CPPUNIT_QTUI_CONFIG_H/*! Macro to export symbol to DLL with VC++. * * - QTTESTRUNNER_DLL_BUILD must be defined when building the DLL. * - QTTESTRUNNER_DLL must be defined if linking against the DLL. * - If none of the above are defined then you are building or linking against * the static library. */#if defined( QTTESTRUNNER_DLL_BUILD )# define QTTESTRUNNER_API __declspec(dllexport)#elif defined ( QTTESTRUNNER_DLL )# define QTTESTRUNNER_API __declspec(dllimport)#else# define QTTESTRUNNER_API#endif#endif // CPPUNIT_QTUI_CONFIG_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?