clientdocument.h
来自「symbian os手机程序开发」· C头文件 代码 · 共 119 行
H
119 行
/*
* ============================================================================
* Name : CClientDocument of ClientDocument.h
* Part of : HTTP Client Example
* Created : 06/26/2006 by Forum Nokia
* Version : 2.0
* Copyright: Forum Nokia
* ============================================================================
*/
#ifndef __CLIENT_DOCUMENT_H__
#define __CLIENT_DOCUMENT_H__
#include <akndoc.h>
/**
* Forward declarations
*/
class CClientAppUi;
class CEikApplication;
class CClientDocument : public CAknDocument
{
public:
/*
* NewL()
*
* Create a CClientDocument object.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
*
*
*/
static CClientDocument* NewL(CEikApplication& aApp);
/*
* NewLC()
*
* Create a CClientDocument object.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
*
*
*/
static CClientDocument* NewLC(CEikApplication& aApp);
/*
* ~CClientDocument()
*
* Destructor for CClientDocument.
*
* Params:
* -
*
* Returns:
* -
*
*/
~CClientDocument();
/*
* From CAknDocument
*/
public:
/*
* CreateAppUiL()
*
* Creates the application user interface, and returns a pointer to it;
* the framework takes ownership of this object
*
* Params:
* -
*
* Returns:
* Pointer to created application ui.
*
*/
CEikAppUi* CreateAppUiL();
private:
/*
* ConstructL()
*
* Second phase construction.
*
* Params:
* -
*
* Returns:
* -
*
*/
void ConstructL();
/*
* CClientDocument()
*
* First phase construction.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
* -
*
*/
CClientDocument(CEikApplication& aApp);
};
#endif // __CLIENT_DOCUMENT_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?