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

📄 testrunnerfailureevent.h

📁 这是国外的resip协议栈
💻 H
字号:
// //////////////////////////////////////////////////////////////////////////// Header file TestRunnerFailureEvent.h for class TestRunnerFailureEvent// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/22// //////////////////////////////////////////////////////////////////////////#ifndef TESTRUNNERFAILUREEVENT_H#define TESTRUNNERFAILUREEVENT_H#include "TestRunnerThreadEvent.h"class TestFailureInfo;/*! \class TestRunnerFailureEvent * \brief This class represents a new TestCase failure event. */class TestRunnerFailureEvent : public TestRunnerThreadEvent{public:  /*! Constructs a TestRunnerFailureEvent object.   */  TestRunnerFailureEvent( TestFailureInfo *failure,                          int numberOfFailure );  /// Destructor.  virtual ~TestRunnerFailureEvent();private:  /// Prevents the use of the copy constructor.  TestRunnerFailureEvent( const TestRunnerFailureEvent &copy );  /// Prevents the use of the copy operator.  void operator =( const TestRunnerFailureEvent &copy );  void process( TestRunnerModelThreadInterface *target );private:  TestFailureInfo *_failure;  int _numberOfFailure;};// Inlines methods for TestRunnerFailureEvent:// -------------------------------------------#endif  // TESTRUNNERFAILUREEVENT_H

⌨️ 快捷键说明

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