📄 viewexdocument.h
字号:
/*
* ============================================================================
* Name : CViewExDocument from ViewExDocument.h
* Part of : ViewEx
* Description:
* Declares document for application.
* Copyright (c) 2004 Symbian Software Ltd. All rights reserved.
* ============================================================================
*/
#ifndef VIEWEXDOCUMENT_H
#define VIEWEXDOCUMENT_H
// INCLUDES
#include <eikdoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CViewExDocument application class.
*/
class CViewExDocument : public CEikDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CViewExDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CViewExDocument();
private:
/**
* EPOC default constructor.
*/
CViewExDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CViewExAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -