mmsexampleapp.cpp

来自「symbian 彩信发送例子,希望对大家有所帮助」· C++ 代码 · 共 49 行

CPP
49
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?