📄 testregistrycollection.h
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _TestRegistryCollection_h_#define _TestRegistryCollection_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "utl/UtlSList.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS/** */class TestRegistryCollection : public UtlSList{/* //////////////////////////// PUBLIC //////////////////////////////////// */ public:/* ============================ CREATORS ================================== */ /** * Default constructor */ TestRegistryCollection(); /** * Copy constructor */ TestRegistryCollection(const TestRegistryCollection& rTestRegistryCollection); /** * Destructor */ virtual ~TestRegistryCollection(); /* ============================ MANIPULATORS ============================== */ /** * Assignment operator * * @param rhs right hand side of the equals operator */ TestRegistryCollection& operator=(const TestRegistryCollection& rhs); /* ============================ ACCESSORS ================================= *//* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */ protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */ private:};/* ============================ INLINE METHODS ============================ */#endif // _TestRegistryCollection_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -