📄 aknexlistdocument.h
字号:
/*
* =============================================================================
* Name : CAknExListDocument
* Part of : AknExList
* Copyright (c) 2003 Nokia. All rights reserved.
* =============================================================================
*/
#ifndef AKNEXLISTDOCUMENT_H
#define AKNEXLISTDOCUMENT_H
// INCLUDES
#include <eikdoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CAknExListDocument application class.
*/
class CAknExListDocument : public CEikDocument
{
public: // Constructors and destructor
/**
* EPOC two-phased constructor.
* @return Pointer to created Document class object.
* @param aApp Reference to Application class object.
*/
static CAknExListDocument* NewL( CEikApplication& aApp );
/**
* Destructor.
*/
virtual ~CAknExListDocument();
/**
* Overload constructor.
* @param aApp Reference to Application class object.
*/
CAknExListDocument( CEikApplication& aApp );
/**
* EPOC constructor.
*/
void ConstructL();
private: // From CEikDocument
/**
* From CEikDocument, CreateAppUiL.
* Creates CAknExListAppUi "App UI" object.
* @return Pointer to created AppUi class object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -