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

📄 s60btlabdocument.cpp

📁 S60培训教材代码(连载)
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CS60BTLabDocument from S60BTLabDocument.h
*  Part of  : S60BTLab
*  Created  : 10/14/2002 by 
*  Implementation notes:
*     Initial content was generated by Series 60 AppWizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include "S60BTLabDocument.h"
#include "S60BTLabAppUi.h"

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

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

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

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

// Two-phased constructor.
CS60BTLabDocument* CS60BTLabDocument::NewL(
        CEikApplication& aApp)     // CS60BTLabApp reference
    {
    CS60BTLabDocument* self = new (ELeave) CS60BTLabDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop();

    return self;
    }
    
// ----------------------------------------------------
// CS60BTLabDocument::CreateAppUiL()
// constructs CS60BTLabAppUi
// ----------------------------------------------------
//
CEikAppUi* CS60BTLabDocument::CreateAppUiL()
    {
    return new (ELeave) CS60BTLabAppUi;
    }

// End of File  

⌨️ 快捷键说明

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