⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 protectorcontext.h

📁 这是国外的resip协议栈
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -