httpex_application.cpp
来自「s60下的http客户端程序」· C++ 代码 · 共 36 行
CPP
36 行
// 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 + =
减小字号Ctrl + -
显示快捷键?