VideoDocument.cpp
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
- /*
- * ============================================================================
- * Name : CVideoDocument from VideoDocument.h
- * Part of : Video
- * Created : 10/14/2003 by Forum Nokia
- * Implementation notes:
- * Initial content was generated by Series 60 AppWizard.
- * Version :
- * Copyright: Forum Nokia
- * ============================================================================
- */
- // INCLUDE FILES
- #include "VideoDocument.h"
- #include "VideoAppUi.h"
- // ================= MEMBER FUNCTIONS =======================
- // constructor
- CVideoDocument::CVideoDocument(CEikApplication& aApp)
- : CAknDocument(aApp)
- {
- }
- // destructor
- CVideoDocument::~CVideoDocument()
- {
- }
- // EPOC default constructor can leave.
- void CVideoDocument::ConstructL()
- {
- }
- // Two-phased constructor.
- CVideoDocument* CVideoDocument::NewL(
- CEikApplication& aApp) // CVideoApp reference
- {
- CVideoDocument* self = new (ELeave) CVideoDocument( aApp );
- CleanupStack::PushL( self );
- self->ConstructL();
- CleanupStack::Pop();
- return self;
- }
-
- // ----------------------------------------------------
- // CVideoDocument::CreateAppUiL()
- // constructs CVideoAppUi
- // ----------------------------------------------------
- //
- CEikAppUi* CVideoDocument::CreateAppUiL()
- {
- return new (ELeave) CVideoAppUi;
- }
- // End of File