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

📄 testlistviewitem.h

📁 这是国外的resip协议栈
💻 H
字号:
// //////////////////////////////////////////////////////////////////////////// Header file TestListViewItem.h for class TestListViewItem// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/09/19// //////////////////////////////////////////////////////////////////////////#ifndef TESTLISTVIEWITEM_H#define TESTLISTVIEWITEM_H#include <qlistview.h>#include <cppunit/Test.h>/*! \class TestListViewItem * \brief This class represents an list item pointing to a Test. */class TestListViewItem : public QListViewItem{public:  /*! Constructs a TestListViewItem object.   */  TestListViewItem( CPPUNIT_NS::Test *test,                    QListViewItem *parent );  /*! Destructor.   */  virtual ~TestListViewItem();  CPPUNIT_NS::Test *test() const;private:  /// Prevents the use of the copy constructor.  TestListViewItem( const TestListViewItem &copy );  /// Prevents the use of the copy operator.  void operator =( const TestListViewItem &copy );private:  CPPUNIT_NS::Test *_test;};#endif  // TESTLISTVIEWITEM_H

⌨️ 快捷键说明

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