📄 toptencontainer.h
字号:
#ifndef __TOPTEN_CONTAINER_H__
#define __TOPTEN_CONTAINER_H__
// INCLUDES
#include "CallContainer.h" // CCallContainer
// FORWARD DECLARATIONS
class CPhoneBookEngine;
// CLASS DECLARATION
/**
*
* @class CTopTenContainer TopTenContainer.h
* @brief This is a container class for a log engine and phonebook example based on the
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CTopTenContainer : public CCallContainer
{
public: // constructors and destructor
static CTopTenContainer* NewL(const TRect& aRect, TInt aDirectionId, CPhoneBookEngine& aPhoneBookEngine);
static CTopTenContainer* NewLC(const TRect& aRect, TInt aDirectionId, CPhoneBookEngine& aPhoneBookEngine);
~CTopTenContainer();
public: // from CCallContainer
void CallArrayCreatedL();
private: // constructor
CTopTenContainer(CPhoneBookEngine& aPhoneBookEngine);
void ConstructL(const TRect& aRect, TInt aDirectionId);
};
#endif // __TOPTEN_CONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -