VideoDocument.cpp
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CVideoDocument from VideoDocument.h
  4. *  Part of  : Video
  5. *  Created  : 10/14/2003 by Forum Nokia
  6. *  Implementation notes:
  7. *     Initial content was generated by Series 60 AppWizard.
  8. *  Version  :
  9. *  Copyright: Forum Nokia
  10. * ============================================================================
  11. */
  12. // INCLUDE FILES
  13. #include "VideoDocument.h"
  14. #include "VideoAppUi.h"
  15. // ================= MEMBER FUNCTIONS =======================
  16. // constructor
  17. CVideoDocument::CVideoDocument(CEikApplication& aApp)
  18. : CAknDocument(aApp)    
  19.     {
  20.     }
  21. // destructor
  22. CVideoDocument::~CVideoDocument()
  23.     {
  24.     }
  25. // EPOC default constructor can leave.
  26. void CVideoDocument::ConstructL()
  27.     {
  28.     }
  29. // Two-phased constructor.
  30. CVideoDocument* CVideoDocument::NewL(
  31.         CEikApplication& aApp)     // CVideoApp reference
  32.     {
  33.     CVideoDocument* self = new (ELeave) CVideoDocument( aApp );
  34.     CleanupStack::PushL( self );
  35.     self->ConstructL();
  36.     CleanupStack::Pop();
  37.     return self;
  38.     }
  39.     
  40. // ----------------------------------------------------
  41. // CVideoDocument::CreateAppUiL()
  42. // constructs CVideoAppUi
  43. // ----------------------------------------------------
  44. //
  45. CEikAppUi* CVideoDocument::CreateAppUiL()
  46.     {
  47.     return new (ELeave) CVideoAppUi;
  48.     }
  49. // End of File