📄 webclientdocument.h
字号:
/*
* ==============================================================================
* Name : WebClientDocument.h
* Part of : WebClient
* Interface :
* Description :
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef WEBCLIENTDOCUMENT_H
#define WEBCLIENTDOCUMENT_H
// INCLUDES
#include <akndoc.h>
// CLASS DECLARATION
/**
* CWebClientDocument application class.
*/
class CWebClientDocument : public CAknDocument
{
public:
/**
* NewL()
* Create a CWebClientDocument object.
* @param aApp: Reference to application this document relates.
*/
static CWebClientDocument* NewL( CEikApplication& aApp );
/**
* NewLC()
* Create a CWebClientDocument object.
* @param aApp: Reference to application this document relates.
*/
static CWebClientDocument* NewLC( CEikApplication& aApp );
/**
* ~CWebClientDocument()
* Destructor for CWebClientDocument.
*/
~CWebClientDocument();
/*
* From CAknDocument
*/
public:
/**
* CreateAppUiL()
* Creates the application user interface, and returns a pointer to it;
* the framework takes ownership of this object
* @return Pointer to created application ui.
*/
CEikAppUi* CreateAppUiL();
private:
/**
* ConstructL()
* Second phase construction.
*/
void ConstructL();
/**
* CWebClientDocument()
* First phase construction.
* @param aApp: Reference to application this document relates.
*/
CWebClientDocument( CEikApplication& aApp );
};
#endif // WEBCLIENTDOCUMENT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -