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

📄 smsexampledocument.cpp

📁 Symbian源代码发送短消息值的参考 源代码发送短消息值的参考
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CSMSExampleDocument from SMSExampleDocument.h
*  Part of  : SMSExample
*  Created  : 08.02.2005 by Forum Nokia
*  Implementation notes:
*     Initial content was generated by Series 60 Application Wizard.
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

// INCLUDE FILES
#include "SMSExampleDocument.h"
#include "SMSExampleAppui.h"

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

// constructor
CSMSExampleDocument::CSMSExampleDocument(CEikApplication& aApp)
: CAknDocument(aApp)    
    {
    }

// destructor
CSMSExampleDocument::~CSMSExampleDocument()
    {
    }

// EPOC default constructor can leave.
void CSMSExampleDocument::ConstructL()
    {
    }

// Two-phased constructor.
CSMSExampleDocument* CSMSExampleDocument::NewL(
        CEikApplication& aApp)     // CSMSExampleApp reference
    {
    CSMSExampleDocument* self = new (ELeave) CSMSExampleDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop(self);
    return self;
    }
    
// ----------------------------------------------------
// CSMSExampleDocument::CreateAppUiL()
// constructs CSMSExampleAppUi
// ----------------------------------------------------
//
CEikAppUi* CSMSExampleDocument::CreateAppUiL()
    {
    return new (ELeave) CSMSExampleAppUi;
    }

// End of File  

⌨️ 快捷键说明

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