00001 /* 00002 * Copyright (c) 2009 Nokia Corporation. 00003 */ 00004 00005 // INCLUDE FILES 00006 #include "CameraWrapperExampleAppUi.h" 00007 #include "CameraWrapperExampleDocument.h" 00008 00009 // ============================ MEMBER FUNCTIONS =============================== 00010 00011 CCameraWrapperExampleDocument* CCameraWrapperExampleDocument::NewL ( 00012 CEikApplication& aApp ) 00013 { 00014 CCameraWrapperExampleDocument* self = NewLC (aApp ); 00015 CleanupStack::Pop (self ); 00016 return self; 00017 } 00018 00019 CCameraWrapperExampleDocument* CCameraWrapperExampleDocument::NewLC ( 00020 CEikApplication& aApp ) 00021 { 00022 CCameraWrapperExampleDocument* self = 00023 new (ELeave) CCameraWrapperExampleDocument (aApp ); 00024 00025 CleanupStack::PushL (self ); 00026 self->ConstructL (); 00027 return self; 00028 } 00029 00030 void CCameraWrapperExampleDocument::ConstructL () 00031 { 00032 } 00033 00034 CCameraWrapperExampleDocument::CCameraWrapperExampleDocument ( 00035 CEikApplication& aApp ) : 00036 CAknDocument (aApp ) 00037 { 00038 } 00039 00040 CCameraWrapperExampleDocument::~CCameraWrapperExampleDocument () 00041 { 00042 } 00043 00044 CEikAppUi* CCameraWrapperExampleDocument::CreateAppUiL () 00045 { 00046 return new (ELeave) CCameraWrapperExampleAppUi; 00047 } 00048 00049 // End of File
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.