📄 internetemaildocument.h
字号:
/*
* ============================================================================
* Name : CInternetEmailDocument from InternetEmailDocument.h
* Part of : InternetEmail
* Created : 25.10.2005 by Forum Nokia
* Description:
* Declares document for application.
* Version : 1.1
* Copyright: Nokia Corporation 2004
* ============================================================================
*/
#ifndef INTERNETEMAILDOCUMENT_H
#define INTERNETEMAILDOCUMENT_H
// INCLUDES
#include <akndoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CInternetEmailDocument application class.
*/
class CInternetEmailDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CInternetEmailDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CInternetEmailDocument();
public: // New functions
public: // from CEikDocument
CFileStore* OpenFileL(TBool aDoOpen,const TDesC& aFilename,RFs& aFs);
protected: // New functions
protected: // Functions from base classes
private:
/**
* EPOC default constructor.
*/
CInternetEmailDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CInternetEmailAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
private:
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -