FepSetupApp.cpp
上传用户:tjsjht
上传日期:2021-01-13
资源大小:25k
文件大小:2k
源码类别:

输入法编程

开发平台:

Visual C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CFepSetupApp from FepSetupApp.cpp
  4. *  Part of  : FepSetup
  5. *  Created  : 02/23/2003 by Forum Nokia
  6. *  Implementation notes:
  7. *
  8. *     Initial content was generated by Series 60 AppWizard.
  9. *  Version  :
  10. *  Copyright: 
  11. * ============================================================================
  12. */
  13. // INCLUDE FILES
  14. #include    "FepSetupApp.h"
  15. #include    "FepSetupDocument.h"
  16. // ================= MEMBER FUNCTIONS =======================
  17. // ---------------------------------------------------------
  18. // CFepSetupApp::AppDllUid()
  19. // Returns application UID
  20. // ---------------------------------------------------------
  21. //
  22. TUid CFepSetupApp::AppDllUid() const
  23.     {
  24.     return KUidFepSetup;
  25.     }
  26.    
  27. // ---------------------------------------------------------
  28. // CFepSetupApp::CreateDocumentL()
  29. // Creates CFepSetupDocument object
  30. // ---------------------------------------------------------
  31. //
  32. CApaDocument* CFepSetupApp::CreateDocumentL()
  33.     {
  34.     return CFepSetupDocument::NewL( *this );
  35.     }
  36. // ================= OTHER EXPORTED FUNCTIONS ==============
  37. //
  38. // ---------------------------------------------------------
  39. // NewApplication() 
  40. // Constructs CFepSetupApp
  41. // Returns: created application object
  42. // ---------------------------------------------------------
  43. //
  44. EXPORT_C CApaApplication* NewApplication()
  45.     {
  46.     return new CFepSetupApp;
  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