📄 dynamicsettinglistapplication.cpp
字号:
/*
* ============================================================================
* Name : CDynamicSettingListApplication from DynamicSettingListApplication.cpp
* Part of : Dynamic Setting List
* Created : 09/21/2005 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "DynamicSettingListDocument.h"
#include "DynamicSettingListApplication.h"
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidDynamicSettingListApp = {0x0D6F698F};
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CDynamicSettingListApplication::CreateDocumentL()
// Creates CDynamicSettingListApplication object
// ---------------------------------------------------------
//
CApaDocument* CDynamicSettingListApplication::CreateDocumentL()
{
// Create an DynamicSettingList document, and return a pointer to it
CApaDocument* document = CDynamicSettingListDocument::NewL(*this);
return document;
}
// ---------------------------------------------------------
// CDynamicSettingListApplication::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CDynamicSettingListApplication::AppDllUid() const
{
// Return the UID for the DynamicSettingList application
return KUidDynamicSettingListApp;
}
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -