⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mmsexampleapp.cpp

📁 有关mms的源代码
💻 CPP
字号:
/*
* ============================================================================
*  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"

// Own constants
#ifdef __SERIES60_3X__
const TUid KUidMMSExample = { 0xE01F402F }; // MMSExample application UID 
#else
const TUid KUidMMSExample = { 0x101F402F }; // MMSExample application UID 
#endif

//
// Functions for Application Architecture
//

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

// ---------------------------------------------------------
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -