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

📄 nettestdocument.cpp

📁 Symbian第二版断点续传代码,可以节省用户下载流量
💻 CPP
字号:
/*
============================================================================
 Name        : CNetTestDocument from NetTestDocument.h
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : CNetTestDocument implementation
============================================================================
*/

// INCLUDE FILES
#include "NetTestDocument.h"
#include "NetTestAppui.h"

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

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

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

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

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

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

  

⌨️ 快捷键说明

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