webclientapp.cpp

来自「symbian 利用http上传的例子.」· C++ 代码 · 共 45 行

CPP
45
字号
/*
* ==============================================================================
*  Name        : WebClientApp.cpp
*  Part of     : WebClient
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2005-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

// INCLUDE FILES
#include    "WebClientApp.h"
#include    "WebClientDocument.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CWebClientApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CWebClientApp::AppDllUid() const
    {
    return KUidWebClient;
    }

   
// ---------------------------------------------------------
// CWebClientApp::CreateDocumentL()
// Creates CWebClientDocument object
// ---------------------------------------------------------
//
CApaDocument* CWebClientApp::CreateDocumentL()
    {
    return CWebClientDocument::NewL( *this );
    }

// End of File  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?