Greg2Document.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

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