📄 cmmssdocument.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __CMMSSDOCUMENT_H__
#define __CMMSSDOCUMENT_H__
// INCLUDES
#include <eikdoc.h>
// FORWARD DECLARATIONS
class CMmssAppUi;
class CEikApplication;
// CLASS DECLARATION
/**
* discussion An instance of class CMmssDocument is the Document part
* of the AVKON application framework for the Mms example application.
*/
class CMmssDocument : public CEikDocument
{
public: // constructors and destructors
/**
* NewL
* Construct a CMmssDocument for the AVKON application aApp
* using two phase construction, and return a pointer to the created
* object
* @param aApp application creating this document
* @result a pointer to the created instance of CMmssDocument
*/
static CMmssDocument* NewL( CEikApplication& aApp );
/**
* NewLC
* Construct a CMmssDocument for the AVKON application aApp
* using two phase construction, and return a pointer to the created
* object
* @param aApp application creating this document
* @result a pointer to the created instance of CMmssDocument
*/
static CMmssDocument* NewLC( CEikApplication& aApp );
/**
* ~CMmssDocument
* Destroy the object and release all memory objects
*/
virtual ~CMmssDocument();
/**
* From CEikDocument, CreateAppUiL
* Create a CMmssAppUi object and return a pointer to it
* @result a pointer to the created instance of the AppUi created
*/
CEikAppUi* CreateAppUiL();
private:
/**
* ConstructL
* Perform the second phase construction of a CMmssDocument object
*/
void ConstructL();
/**
* CMmssDocument
* Perform the first phase of two phase construction
* @param aApp application creating this document
*/
CMmssDocument( CEikApplication& aApp );
};
#endif // __CMMSSDOCUMENT_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -