dialerdocument.h
来自「symbian 的打电话程序 可以实现安装sis」· C头文件 代码 · 共 78 行
H
78 行
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __DIALERDOCUMENT_H__
#define __DIALERDOCUMENT_H__
// INCLUDES
#include <eikdoc.h>
// FORWARD DECLARATIONS
class CDialerAppUi;
class CEikApplication;
// CLASS DECLARATIONS
/**
* CDialerDocument
* An instance of class CDialerDocument is the Document part of the AVKON
* application framework for the Dialer example application
*/
class CDialerDocument : public CEikDocument
{
public: // Constructors and Destructors
/**
* NewL()
* Construct a CDialerDocument for the AVKON application aApp
* using two phase construction, and return a pointer to
* the created object
* @param aApp application creating this document
* @return a pointer to the created instance of CDialerDocument
*/
static CDialerDocument* NewL( CEikApplication& aApp );
/**
* NewLC()
* Construct a CDialerDocument for the AVKON application aApp
* using two phase construction, and return a pointer to
* the created object
* @param aApp application creating this document
* @return a pointer to the created instance of CDialerDocument
*/
static CDialerDocument* NewLC( CEikApplication& aApp );
/**
* ~CDialerDocument()
* Destroy the object and release all memory objects
*/
virtual ~CDialerDocument();
private: // Constructors
/**
* ConstructL()
* Perform the second phase construction of a CDialerDocument object
*/
void ConstructL();
/**
* CDialerDocument()
* Perform the first phase of two phase construction
* @param aApp application creating this document
*/
CDialerDocument( CEikApplication& aApp );
/**
* CreateAppUiL ()
* Create a CDialerAppUi object and return a pointer to it
* @return a pointer to the created instance of the AppUi created
*/
CEikAppUi* CreateAppUiL();
};
#endif // __DIALERDOCUMENT_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?