hellodocument.h
来自「从s60平台移植到UIQ平台的例子代码:In this code we shal」· C头文件 代码 · 共 68 行
H
68 行
/*
* ============================================================================
* Name : CHelloDocument from HelloDocument.h
* Part of : Hello
* Created : 21/05/2002 by
* Description:
* Declares document for application.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef HELLODOCUMENT_H
#define HELLODOCUMENT_H
// INCLUDES
#include <qikdocument.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CHelloDocument application class.
*/
class CHelloDocument : public CQikDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CHelloDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CHelloDocument();
public: // New functions
protected: // New functions
protected: // Functions from base classes
private:
/**
* EPOC default constructor.
*/
CHelloDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CHelloAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?