mpeg4decoderdocument.cpp
来自「symbian上的yuv视频文件处理程序 可对yuv的每一帧数据进行读取 处理」· C++ 代码 · 共 58 行
CPP
58 行
/*
========================================================================
Name : Mpeg4DecoderDocument.cpp
Author : Jin
Copyright : Copyright (C) 2005-2008 Cyansoft Studio, All rights Reserved.
Description :
========================================================================
*/
// [[[ begin generated region: do not modify [Generated User Includes]
#include "Mpeg4DecoderDocument.h"
#include "Mpeg4DecoderAppUi.h"
// ]]] end generated region [Generated User Includes]
/**
* @brief Constructs the document class for the application.
* @param anApplication the application instance
*/
CMpeg4DecoderDocument::CMpeg4DecoderDocument( CEikApplication& anApplication )
: CAknDocument( anApplication )
{
}
/**
* @brief Completes the second phase of Symbian object construction.
* Put initialization code that could leave here.
*/
void CMpeg4DecoderDocument::ConstructL()
{
}
/**
* Symbian OS two-phase constructor.
*
* Creates an instance of CMpeg4DecoderDocument, constructs it, and
* returns it.
*
* @param aApp the application instance
* @return the new CMpeg4DecoderDocument
*/
CMpeg4DecoderDocument* CMpeg4DecoderDocument::NewL( CEikApplication& aApp )
{
CMpeg4DecoderDocument* self = new ( ELeave ) CMpeg4DecoderDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop( self );
return self;
}
/**
* @brief Creates the application UI object for this document.
* @return the new instance
*/
CEikAppUi* CMpeg4DecoderDocument::CreateAppUiL()
{
return new ( ELeave ) CMpeg4DecoderAppUi;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?