mostrecenttests.h

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

H
63
字号
// //////////////////////////////////////////////////////////////////////////// Header file MostRecentTests.h for class MostRecentTests// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/20// //////////////////////////////////////////////////////////////////////////#ifndef MOSTRECENTTESTS_H#define MOSTRECENTTESTS_H#include <cppunit/Test.h>#include <qstring.h>#include <qlist.h>#include <qobject.h>/*! \class MostRecentTests * \brief This class represents the list of the recent tests. */class MostRecentTests : public QObject{  Q_OBJECTpublic:  /*! Constructs a MostRecentTests object.   */  MostRecentTests();  /*! Destructor.   */  virtual ~MostRecentTests();  void setTestToRun( CPPUNIT_NS::Test *test );  CPPUNIT_NS::Test *testToRun();  int testCount();  QString testNameAt( int index );  CPPUNIT_NS::Test *testAt( int index );signals:  void listChanged();  void testToRunChanged( CPPUNIT_NS::Test *testToRun );public slots:  void selectTestToRun( int index );private:  /// Prevents the use of the copy constructor.  MostRecentTests( const MostRecentTests &copy );  /// Prevents the use of the copy operator.  void operator =( const MostRecentTests &copy );private:  QList<CPPUNIT_NS::Test> m_tests;};// Inlines methods for MostRecentTests:// ------------------------------------#endif  // MOSTRECENTTESTS_H

⌨️ 快捷键说明

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