EmailExampleDoc.cpp
上传用户:sempras
上传日期:2007-03-04
资源大小:821k
文件大小:2k
- /*
- * ============================================================================
- * Name : CEmailExampleDocument from EmailExampleDocument.cpp
- * Part of : EmailExample
- * Created : 09/11/2003 by Forum Nokia
- * Implementation notes:
- * Basic framework class constructed initially with appwizard
- *
- * Version : 1.0
- * Copyright: Nokia Corporation
- * ============================================================================
- */
- #include "EmailExampleDoc.h"
- #include "EmailExampleAui.h"
- #include "EmailExampleVer.h"
- #include <Eikon.rsg>
- CEikAppUi* CEmailExampleDocument::CreateAppUiL()
- {
- return new(ELeave) CEmailExampleAppUi;
- }
- CEmailExampleDocument::~CEmailExampleDocument()
- {}
- /*
- * ============================================================================
- * Name : CEmailExampleApplication from EmailExampleDoc.cpp
- * Part of : EmailExample
- * Created : 09/11/2003 by Forum Nokia
- * Implementation notes:
- * Basic framework class constructed initially with appwizard
- *
- * Version : 1.0
- * Copyright: Nokia Corporation
- * ============================================================================
- */
- TUid CEmailExampleApplication::AppDllUid() const
- {
- return KUidEmailExample;
- }
- CApaDocument* CEmailExampleApplication::CreateDocumentL()
- {
- return new(ELeave) CEmailExampleDocument(*this);
- }
- //
- // EXPORTed functions
- //
- EXPORT_C CApaApplication* NewApplication()
- {
- return new CEmailExampleApplication;
- }
- GLDEF_C TInt E32Dll(TDllReason)
- {
- return(KErrNone);
- }