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

📄 mobiflvdocument.cpp

📁 symbian下的FLV播放视频源码 可以快速便捷的播放FLV格式的视频
💻 CPP
字号:
/*
============================================================================
 Name        : MobiFLVDocument.cpp
 Author      : 
 Copyright   : Copyright by Sittiphol Phanvilai
 Description : CMobiFLVDocument implementation
============================================================================
*/


// INCLUDE FILES
#include "MobiFLVAppUi.h"
#include "MobiFLVDocument.h"

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

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

// -----------------------------------------------------------------------------
// CMobiFLVDocument::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CMobiFLVDocument* CMobiFLVDocument::NewLC( CEikApplication&
                                                           aApp )
    {
    CMobiFLVDocument* self =
        new ( ELeave ) CMobiFLVDocument( aApp );

    CleanupStack::PushL( self );
    self->ConstructL();
    return self;
    }

// -----------------------------------------------------------------------------
// CMobiFLVDocument::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CMobiFLVDocument::ConstructL()
    {
    // No implementation required
    }

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

// ---------------------------------------------------------------------------
// CMobiFLVDocument::~CMobiFLVDocument()
// Destructor.
// ---------------------------------------------------------------------------
//
CMobiFLVDocument::~CMobiFLVDocument()
    {
    // No implementation required
    }

// ---------------------------------------------------------------------------
// CMobiFLVDocument::CreateAppUiL()
// Constructs CreateAppUi.
// ---------------------------------------------------------------------------
//
CEikAppUi* CMobiFLVDocument::CreateAppUiL()
    {
    // Create the application user interface, and return a pointer to it;
    // the framework takes ownership of this object
    return ( static_cast <CEikAppUi*> ( new ( ELeave )
                                        CMobiFLVAppUi ) );
    }

// End of File

⌨️ 快捷键说明

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