S60 3rd Edition SDK FP2 for Symbian OS CommonDialogsEx |
00001 /* 00002 * ============================================================================ 00003 * Name : commondialogsexdocument.cpp 00004 * Part of : CommonDialogsEx 00005 * Description : Implements CommonDialogsEx document. 00006 * Version : 00007 * 00008 * Copyright (c) 2006 Nokia Corporation. 00009 * This material, including documentation and any related 00010 * computer programs, is protected by copyright controlled by 00011 * Nokia Corporation. 00012 * ============================================================================== 00013 */ 00014 00015 // INCLUDE FILES 00016 #include "CommonDialogsExDocument.h" 00017 #include "CommonDialogsExAppUi.h" 00018 00019 // ================= MEMBER FUNCTIONS ======================= 00020 00021 // destructor 00022 CCommonDialogsExDocument::~CCommonDialogsExDocument() 00023 { 00024 } 00025 00026 // EPOC default constructor can leave. 00027 void CCommonDialogsExDocument::ConstructL() 00028 { 00029 } 00030 00031 // Two-phased constructor. 00032 CCommonDialogsExDocument* CCommonDialogsExDocument::NewL( 00033 CEikApplication& aApp) 00034 { 00035 CCommonDialogsExDocument* self = new (ELeave) CCommonDialogsExDocument( aApp ); 00036 CleanupStack::PushL( self ); 00037 self->ConstructL(); 00038 CleanupStack::Pop(); 00039 00040 return self; 00041 } 00042 00043 // ---------------------------------------------------- 00044 // CCommonDialogsExDocument::CreateAppUiL() 00045 // constructs CDLLTestAppUi 00046 // ---------------------------------------------------- 00047 // 00048 CEikAppUi* CCommonDialogsExDocument::CreateAppUiL() 00049 { 00050 return new (ELeave) CCommonDialogsExAppUi; 00051 } 00052 00053 // End of File
© Nokia 2007 |