📄 dbmsapplication.cpp
字号:
/*
* ============================================================================
* Name : DBMSApplication from DBMSApplication.cpp
* Part of : DBMS
* Created : 04.11.2006 by Forum Nokia
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include "DBMSDocument.h"
#include "DBMSApplication.h"
// Uid for the application, this should match the one in the mmp file
#ifdef __SERIES60_3X__
const TUid KUidDBMSApp = {0xE01F5466};
#else
const TUid KUidDBMSApp = {0x101F5466};
#endif
// ---------------------------------------------------------------------------
// CDBMSAppUi::CreateDocumentL()
//
// Create the document for the DBMS application.
// ---------------------------------------------------------------------------
CApaDocument* CDBMSApplication::CreateDocumentL()
{
return (static_cast<CApaDocument*>(CDBMSDocument::NewL(*this)));
}
// ---------------------------------------------------------------------------
// CDBMSAppUi::AppDllUid()
//
// Return the UID of this DBMS application
// ---------------------------------------------------------------------------
TUid CDBMSApplication::AppDllUid() const
{
return KUidDBMSApp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -