dbmsapplication.cpp
来自「The DBMS (Database Management System) ex」· C++ 代码 · 共 42 行
CPP
42 行
/*
* ============================================================================
* 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 + =
减小字号Ctrl + -
显示快捷键?