camdecode_3rddocument.cpp
来自「PartiTekSDK.chm is for windows, Unix/Lin」· C++ 代码 · 共 91 行
CPP
91 行
/*
============================================================================
Name : CamDecode_3rdDocument.cpp
Author :
Version :
Copyright : Your copyright notice
Description : Application document class (model)
============================================================================
*/
// INCLUDE FILES
#include "CamDecode_3rdAppUi.h"
#include "CamDecode_3rdDocument.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CCamDecode_3rdDocument::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CCamDecode_3rdDocument* CCamDecode_3rdDocument::NewL( CEikApplication&
aApp )
{
CCamDecode_3rdDocument* self = NewLC( aApp );
CleanupStack::Pop( self );
return self;
}
// -----------------------------------------------------------------------------
// CCamDecode_3rdDocument::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CCamDecode_3rdDocument* CCamDecode_3rdDocument::NewLC( CEikApplication&
aApp )
{
CCamDecode_3rdDocument* self =
new ( ELeave ) CCamDecode_3rdDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
return self;
}
// -----------------------------------------------------------------------------
// CCamDecode_3rdDocument::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CCamDecode_3rdDocument::ConstructL()
{
// No implementation required
}
// -----------------------------------------------------------------------------
// CCamDecode_3rdDocument::CCamDecode_3rdDocument()
// C++ default constructor can NOT contain any code, that might leave.
// -----------------------------------------------------------------------------
//
CCamDecode_3rdDocument::CCamDecode_3rdDocument( CEikApplication& aApp )
: CAknDocument( aApp )
{
// No implementation required
}
// ---------------------------------------------------------------------------
// CCamDecode_3rdDocument::~CCamDecode_3rdDocument()
// Destructor.
// ---------------------------------------------------------------------------
//
CCamDecode_3rdDocument::~CCamDecode_3rdDocument()
{
// No implementation required
}
// ---------------------------------------------------------------------------
// CCamDecode_3rdDocument::CreateAppUiL()
// Constructs CreateAppUi.
// ---------------------------------------------------------------------------
//
CEikAppUi* CCamDecode_3rdDocument::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 )
CCamDecode_3rdAppUi ) );
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?