exampleclientdocument.h
来自「symbian os c/c++ 手机客户端使用HTTP通信例子」· C头文件 代码 · 共 122 行
H
122 行
/*
* ============================================================================
* Name : ExampleClientDocument.h
* Part of : HTTP Example
* Created : 11/14/2003 by Forum Nokia
* Implementation notes:
*
*
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __EXAMPLECLIENT_DOCUMENT_H__
#define __EXAMPLECLIENT_DOCUMENT_H__
#include <akndoc.h>
/**
* Forward declarations
*/
class CExampleClientAppUi;
class CEikApplication;
class CExampleClientDocument : public CAknDocument
{
public:
/*
* NewL()
*
* Create a CExampleClientDocument object.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
*
*
*/
static CExampleClientDocument* NewL(CEikApplication& aApp);
/*
* NewLC()
*
* Create a CExampleClientDocument object.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
*
*
*/
static CExampleClientDocument* NewLC(CEikApplication& aApp);
/*
* ~CExampleClientDocument()
*
* Destructor for CExampleClientDocument.
*
* Params:
* -
*
* Returns:
* -
*
*/
~CExampleClientDocument();
/*
* 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();
/*
* CExampleClientDocument()
*
* First phase construction.
*
* Params:
* aApp: Reference to application this document relates.
*
* Returns:
* -
*
*/
CExampleClientDocument(CEikApplication& aApp);
};
#endif // __EXAMPLECLIENT_DOCUMENT_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?