protectorcontext.h

来自「这是国外的resip协议栈」· C头文件 代码 · 共 39 行

H
39
字号
#ifndef CPPUNIT_PROTECTORCONTEXT_H#define CPPUNIT_PROTECTORCONTEXT_H#include <cppunit/Portability.h>#include <string>CPPUNIT_NS_BEGINclass Test;class TestResult;/*! \brief Protector context (Implementation). * Implementation detail. * \internal Context use to report failure in Protector. */class CPPUNIT_API ProtectorContext{public:  ProtectorContext( Test *test,                    TestResult *result,                    const std::string &shortDescription )      : m_test( test )      , m_result( result )      , m_shortDescription( shortDescription )  {  }  Test *m_test;  TestResult *m_result;  std::string m_shortDescription;};CPPUNIT_NS_END#endif // CPPUNIT_PROTECTORCONTEXT_H

⌨️ 快捷键说明

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