📄 aknexsettinglistapp.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __AKNEXSETTINGLISTAPP_H__
#define __AKNEXSETTINGLISTAPP_H__
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application.
const TUid KUidAknExSettingList = { 0x10005C29 };
// CLASS DECLARATION
/**
* CAknExSettingListApp application class.
* Provides factory to create concrete document object.
*
*/
class CAknExSettingListApp : public CAknApplication
{
private: // From CApaApplication
/**
* From CApaApplication, CreateDocumentL.
* Creates CAknExSettingListDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, AppDllUid.
* Returns application's UID ( KUidAknExSettingList ).
* @return The value of KUidAknExSettingList.
*/
TUid AppDllUid() const;
};
#endif //__AKNEXSETTINGLISTAPP_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -