example2ddocument.cpp

来自「Symbian手机游戏,可运行于S60 1.x和2.x下, Carbide.C」· C++ 代码 · 共 55 行

CPP
55
字号
/*
* ============================================================================
*  Name     : CExample2DDocument from Example2DDocument.h
*  Part of  : Example2D
*  Created  : 23.09.2005 by 
*  Implementation notes:
*     Initial content was generated by Series 90 Application Wizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include "Example2DDocument.h"
#include "Example2DAppui.h"



CExample2DDocument::CExample2DDocument( CEikApplication& aApp )
	: CAknDocument( aApp )
    {
    }



CExample2DDocument::~CExample2DDocument()
    {
    }



void CExample2DDocument::ConstructL()
    {
    }



CExample2DDocument* CExample2DDocument::NewL( CEikApplication& aApp )
    {
    CExample2DDocument* self = new( ELeave )CExample2DDocument( aApp );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop();
    return self;
    }



CEikAppUi* CExample2DDocument::CreateAppUiL()
    {
    return new( ELeave )CExample2DAppUi;
    }
    
// End of file

⌨️ 快捷键说明

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