testrunnertestcaserunevent.h

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

H
46
字号
// //////////////////////////////////////////////////////////////////////////// Header file TestRunnerTestCaseRunEvent.h for class TestRunnerTestCaseRunEvent// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/22// //////////////////////////////////////////////////////////////////////////#ifndef TESTRUNNERTESTCASERUNEVENT_H#define TESTRUNNERTESTCASERUNEVENT_H#include "TestRunnerThreadEvent.h"/*! \class TestRunnerTestCaseRunEvent * \brief This class represents a new TestCase run event. */class TestRunnerTestCaseRunEvent : public TestRunnerThreadEvent{public:  /*! Constructs a TestRunnerTestCaseRunEvent object.   */  TestRunnerTestCaseRunEvent( int numberOfRun );  /// Destructor.  virtual ~TestRunnerTestCaseRunEvent();private:  /// Prevents the use of the copy constructor.  TestRunnerTestCaseRunEvent( const TestRunnerTestCaseRunEvent &copy );  /// Prevents the use of the copy operator.  void operator =( const TestRunnerTestCaseRunEvent &copy );  void process( TestRunnerModelThreadInterface *target );private:  int _numberOfRun;};// Inlines methods for TestRunnerTestCaseRunEvent:// -----------------------------------------------#endif  // TESTRUNNERTESTCASERUNEVENT_H

⌨️ 快捷键说明

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