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

📄 toptencontainer.h

📁 Symbian s60 2rd 通话摘要例题
💻 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 + -