www.pudn.com > Example2D.rar > Example2DDocument.cpp


/* 
* ============================================================================ 
*  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 ) 
	: CEikDocument( 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