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

📄 testfailureinfo.h

📁 这是国外的resip协议栈
💻 H
字号:
// //////////////////////////////////////////////////////////////////////////// Header file TestFailureInfo.h for class TestFailureInfo// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/20// //////////////////////////////////////////////////////////////////////////#ifndef TESTFAILUREINFO_H#define TESTFAILUREINFO_H#include <cppunit/TestFailure.h>/*! \class TestFailureInfo * \brief This class represents a test failure. */class TestFailureInfo : public CPPUNIT_NS::TestFailure{public:  /*! Constructs a TestFailureInfo object.   */  TestFailureInfo( CPPUNIT_NS::Test *failedTest,                    CPPUNIT_NS::Exception *thrownException,                   bool isError );  /*! Destructor.   */  virtual ~TestFailureInfo();private:  /// Prevents the use of the copy constructor.  TestFailureInfo( const TestFailureInfo &copy );  /// Prevents the use of the copy operator.  void operator =( const TestFailureInfo &copy );};// Inlines methods for TestFailureInfo:// ------------------------------------#endif  // TESTFAILUREINFO_H

⌨️ 快捷键说明

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