mmsexampleapp.cpp

来自「Symbian c++ 的彩信发送接收实例」· C++ 代码 · 共 38 行

CPP
38
字号
/*
* ============================================================================
*  Name     : CMMSExampleApp from MMSExampleApp.cpp
*  Part of  : MMSExample
*  Created  : 04.11.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

// INCLUDE FILES
#include    "MMSExampleApp.h"
#include    "MMSExampleDocument.h"

const TUid KUidMMSExample = { 0xE01F402F }; // MMSExample application UID 

// ---------------------------------------------------------
// CMMSExampleApplication::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CMMSExampleApplication::AppDllUid() const
    {
    return KUidMMSExample;
    }

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

⌨️ 快捷键说明

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