toptencontainer.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 42 行

H
42
字号
#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 + =
减小字号Ctrl + -
显示快捷键?