📄 bookstoreapplication.cpp
字号:
/*
* ============================================================================
* Name : BookstoreApplication from BookstoreApplication.cpp
* Part of : Bookstore
* Created : 8.12.2003 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include "BookstoreDocument.h"
#include "BookstoreApplication.h"
// Uid for the application, this should match the one in the mmp file
const TUid KUidBookstoreApp = {0x101F5466};
// ---------------------------------------------------------------------------
// CBookstoreAppUi::CreateDocumentL()
//
// Create the document for the Bookstore application.
// ---------------------------------------------------------------------------
CApaDocument* CBookstoreApplication::CreateDocumentL()
{
return (static_cast<CApaDocument*>(CBookstoreDocument::NewL(*this)));
}
// ---------------------------------------------------------------------------
// CBookstoreAppUi::AppDllUid()
//
// Return the UID of this Bookstore application
// ---------------------------------------------------------------------------
TUid CBookstoreApplication::AppDllUid() const
{
return KUidBookstoreApp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -