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

📄 clocationexampledocument.cpp

📁 Symbian Demo, why do you want to get 20 bytes.
💻 CPP
字号:
/*
* ============================================================================
*  Name     : clocationexampledocument.cpp
*  Part of  : Location Example
*  Created  : 21.05.2007 by Forum Nokia
*  Description:
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#include "clocationexampleappui.h"
#include "clocationexampledocument.h"


// -----------------------------------------------------------------------------
// CLocationExampleDocument::CLocationExampleDocument()
// C++ default constructor can NOT contain any code, that might leave.
// -----------------------------------------------------------------------------
//
CLocationExampleDocument::CLocationExampleDocument( CEikApplication& aApp ) :
                                          CAknDocument( aApp )
    {
    }

// -----------------------------------------------------------------------------
// CLocationExampleDocument::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CLocationExampleDocument* CLocationExampleDocument::NewL( CEikApplication& aApp )
    {
    CLocationExampleDocument* self = NewLC( aApp );
    CleanupStack::Pop( self );
    return self;
    }


// -----------------------------------------------------------------------------
// CLocationExampleDocument::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CLocationExampleDocument* CLocationExampleDocument::NewLC( CEikApplication& aApp )
    {
    CLocationExampleDocument* self = new ( ELeave ) CLocationExampleDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    return self;
    }

// -----------------------------------------------------------------------------
// CLocationExampleDocument::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CLocationExampleDocument::ConstructL()
    {
    }

// -----------------------------------------------------------------------------
// CLocationExampleDocument::~CLocationExampleDocument()
// Destructor.
// -----------------------------------------------------------------------------
//
CLocationExampleDocument::~CLocationExampleDocument()
    {
    }

// -----------------------------------------------------------------------------
// CLocationExampleDocument::CreateAppUiL()
// Create the application user interface, and return a pointer to it
// -----------------------------------------------------------------------------
//
CEikAppUi* CLocationExampleDocument::CreateAppUiL()
    {
    return( static_cast<CEikAppUi*>( new ( ELeave ) CLocationExampleAppUi ) );
    }

// End of File

⌨️ 快捷键说明

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