defaultprotector.h
来自「这是国外的resip协议栈」· C头文件 代码 · 共 28 行
H
28 行
#ifndef CPPUNIT_DEFAULTPROTECTOR_H#define CPPUNIT_DEFAULTPROTECTOR_H#include <cppunit/Protector.h>CPPUNIT_NS_BEGIN/*! \brief Default protector that catch all exceptions (Implementation). * * Implementation detail. * \internal This protector catch and generate a failure for the following * exception types: * - Exception * - std::exception * - ... */class DefaultProtector : public Protector{public: bool protect( const Functor &functor, const ProtectorContext &context );};CPPUNIT_NS_END#endif // CPPUNIT_DEFAULTPROTECTOR_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?