ccontdocument.h
来自「基于symbian OS的IP前缀添加器.可以在通话前为电话加一个IP的功能.」· C头文件 代码 · 共 68 行
H
68 行
/* Copyright (c) 2003, Nokia. All rights reserved */
#ifndef __CCONTDOCUMENT_H__
#define __CCONTDOCUMENT_H__
// INCLUDES
#include <akndoc.h>
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CContDocument application class.
*/
class CContDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* @function NewL
* @discussion Construct a CContDocument 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 CContDocument
*/
static CContDocument* NewL(CEikApplication& aApp);
/**
* Destructor is always virtual
* @function ~CContDocument
* @discussion Destroy the object and release all memory objects
*/
virtual ~CContDocument();
private:
/**
* @function CContDocument
* @discussion Perform the first phase of two phase construction
* @param aApp application creating this document
*/
CContDocument(CEikApplication& aApp);
/**
* @function ConstructL
*
* @discussion Perform the second phase construction of a
* CContDocument object
*/
void ConstructL();
private:
/**
* @function CreateAppUiL
* @discussion Create a CContAppUi object and return a pointer to it
* @return a pointer to the created instance of the AppUi created
*/
CEikAppUi* CreateAppUiL();
};
#endif // __CCONTDOCUMENT_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?