?? 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;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -