S60MMFLabDocument.cpp
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
- // Copyright (c) 2006 Nokia Corporation.
- // INCLUDE FILES
- #include "S60MMFLabDocument.h"
- #include "S60MMFLabAppUi.h"
- // ================= MEMBER FUNCTIONS =======================
- // constructor
- CS60MMFLabDocument::CS60MMFLabDocument(CEikApplication& aApp)
- : CAknDocument(aApp)
- {
- }
- // destructor
- CS60MMFLabDocument::~CS60MMFLabDocument()
- {
- }
- // EPOC default constructor can leave.
- void CS60MMFLabDocument::ConstructL()
- {
- }
- // Two-phased constructor.
- CS60MMFLabDocument* CS60MMFLabDocument::NewL(
- CEikApplication& aApp) // CS60MMFLabApp reference
- {
- CS60MMFLabDocument* self = new (ELeave) CS60MMFLabDocument( aApp );
- CleanupStack::PushL( self );
- self->ConstructL();
- CleanupStack::Pop();
- return self;
- }
-
- // ----------------------------------------------------
- // CS60MMFLabDocument::CreateAppUiL()
- // constructs CS60MMFLabAppUi
- // ----------------------------------------------------
- //
- CEikAppUi* CS60MMFLabDocument::CreateAppUiL()
- {
- return new (ELeave) CS60MMFLabAppUi;
- }
- // End of File