📄 httpex_application.cpp
字号:
// HttpEx_CHttpExApplication.cpp
// ----------------------------------
//
// Copyright (c) 2002 Symbian Ltd. All rights reserved.
//
////////////////////////////////////////////////////////////////////////
//
// Source file for the implementation of the
// application class - CHttpExApplication
//
////////////////////////////////////////////////////////////////////////
#include "HttpEx.h"
const TUid KUidHttpEx = { 0x101F6163 };
// The function is called by the UI framework to ask for the
// application's UID. The returned value is defined by the
// constant KUidHttpExe and must match the second value
// defined in the project definition file.
//
TUid CHttpExApplication::AppDllUid() const
{
return KUidHttpEx;
}
// This function is called by the UI framework at
// application start-up. It creates an instance of the
// document class.
//
CApaDocument* CHttpExApplication::CreateDocumentL()
{
return new (ELeave) CHttpExDocument(*this);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -