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

📄 testrunnerthreadevent.h

📁 这是国外的resip协议栈
💻 H
字号:
// //////////////////////////////////////////////////////////////////////////// Header file TestRunnerThreadEvent.h for class TestRunnerThreadEvent// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/21// //////////////////////////////////////////////////////////////////////////#ifndef TESTRUNNERTHREADEVENT_H#define TESTRUNNERTHREADEVENT_H#include <qevent.h>class TestRunnerModelThreadInterface;/*! \class TestRunnerThreadEvent * \brief This class represents an event send by the test runner thread. */class TestRunnerThreadEvent : public QCustomEvent{public:  /*! Constructs a TestRunnerThreadEvent object.   */  TestRunnerThreadEvent();  /// Destructor.  virtual ~TestRunnerThreadEvent();  virtual void process( TestRunnerModelThreadInterface *target ) =0;private:  /// Prevents the use of the copy constructor.  TestRunnerThreadEvent( const TestRunnerThreadEvent &copy );  /// Prevents the use of the copy operator.  void operator =( const TestRunnerThreadEvent &copy );};#endif  // TESTRUNNERTHREADEVENT_H

⌨️ 快捷键说明

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