?? exampleclientapplication.cpp
字號:
/*
* ============================================================================
* Name : ExampleClientApplication.cpp
* Part of : HTTP Example
* Created : 11/14/2003 by Forum Nokia
* Implementation notes:
*
*
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include "ExampleClientDocument.h"
#include "ExampleClientApplication.h"
// UID for the application; this should correspond to the uid defined in
// the mmp file
const TUid KUidExampleClientApp = {0x101F5463};
// ----------------------------------------------------------------------------
// CExampleClientApplication::CreateDocumentL()
//
// Creates an ExampleClient document, and returns a pointer to it
// ----------------------------------------------------------------------------
CApaDocument* CExampleClientApplication::CreateDocumentL()
{
return (static_cast<CApaDocument*>(CExampleClientDocument::NewL(*this)));
}
// ----------------------------------------------------------------------------
// CExampleClientApplication::AppDllUid()
//
// Returns the UID for the ExampleClient application
// ----------------------------------------------------------------------------
TUid CExampleClientApplication::AppDllUid() const
{
return KUidExampleClientApp;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -