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

Symbian

开发平台:

C/C++

  1. /*
  2.  * ============================================================================
  3.  *  Name     : CGreg2App from Greg2App.cpp
  4.  *  Part of  : greg2
  5.  *  Created  : 12/11/2002 by 
  6.  *  Implementation notes:
  7.  *
  8.  *     Initial content was generated by Series 60 AppWizard.
  9.  *  Version  :
  10.  *  Copyright: 
  11.  * ============================================================================
  12.  */
  13. // INCLUDE FILES
  14. #include    "Greg2App.h"
  15. #include    "Greg2Document.h"
  16. // ================= MEMBER FUNCTIONS =======================
  17. // ---------------------------------------------------------
  18. // CGreg2App::AppDllUid()
  19. // Returns application UID
  20. // ---------------------------------------------------------
  21. //
  22. TUid CGreg2App::AppDllUid() const
  23. {
  24.     return KUidgreg2;
  25. }
  26.    
  27. // ---------------------------------------------------------
  28. // CGreg2App::CreateDocumentL()
  29. // Creates CGreg2Document object
  30. // ---------------------------------------------------------
  31. //
  32. CApaDocument* CGreg2App::CreateDocumentL()
  33. {
  34.     return CGreg2Document::NewL( *this );
  35. }
  36. // ================= OTHER EXPORTED FUNCTIONS ==============
  37. //
  38. // ---------------------------------------------------------
  39. // NewApplication() 
  40. // Constructs CGreg2App
  41. // Returns: created application object
  42. // ---------------------------------------------------------
  43. //
  44. EXPORT_C CApaApplication* NewApplication()
  45. {
  46.     return new CGreg2App;
  47. }
  48. // ---------------------------------------------------------
  49. // E32Dll(TDllReason) 
  50. // Entry point function for EPOC Apps
  51. // Returns: KErrNone: No error
  52. // ---------------------------------------------------------
  53. //
  54. GLDEF_C TInt E32Dll( TDllReason )
  55. {
  56.     return KErrNone;
  57. }
  58. // End of File