testrunnerthreadevent.h

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

H
38
字号
// //////////////////////////////////////////////////////////////////////////// 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 + =
减小字号Ctrl + -
显示快捷键?