📄 iapconnectdocument.h
字号:
/*
* ============================================================================
* Name : CIAPConnectDocument from IAPConnectDocument.h
* Part of : Internet Access Points Example v2.0
* Description:
* Declares document for application.
* Created : 01.09.2006 by Forum Nokia
* Version : 2.0
* Copyright: Forum Nokia
* ============================================================================
*/
#ifndef IAPCONNECT_DOCUMENT_H
#define IAPCONNECT_DOCUMENT_H
// INCLUDES
#include <akndoc.h>
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CIAPConnectDocument application class.
*/
class CIAPConnectDocument : public CAknDocument
{
public:
/*
* NewL()
*
* Create CIAPConnectDocument object
*
* Params:
*
* CEikApplication& aApp Reference to the application object
*
*/
static CIAPConnectDocument* NewL(CEikApplication& aApp);
/*
* ~CIAPConnectDocument()
*
* Destructor
*
*/
virtual ~CIAPConnectDocument();
private:
/*
* CIAPConnectDocument()
*
* Constructor
*
* Params:
*
* CEikApplication& aApp Reference to the application object
*
*/
CIAPConnectDocument(CEikApplication& aApp);
/*
* ConstructL()
*
* Second phase constructor
*
*/
void ConstructL();
/*
* CreateAppUiL()
*
* Create the App UI object
*
* Returns:
*
* CEikAppUi* Pointer to App UI object
*
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -