browserlauncherexapplication.cpp
来自「Symbian s60系统中调用系统浏览器」· C++ 代码 · 共 27 行
CPP
27 行
/* ====================================================================
* File: BrowserLauncherExApplication.cpp
* Created: 09/07/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "BrowserLauncherExDocument.h"
#include "BrowserLauncherExApplication.h"
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidBrowserLauncherExApp = {0x0D1C6C1A};
CApaDocument* CBrowserLauncherExApplication::CreateDocumentL()
{
// Create an BrowserLauncherEx document, and return a pointer to it
CApaDocument* document = CBrowserLauncherExDocument::NewL(*this);
return document;
}
TUid CBrowserLauncherExApplication::AppDllUid() const
{
// Return the UID for the BrowserLauncherEx application
return KUidBrowserLauncherExApp;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?