FepSetupApp.cpp
资源名称:Symbian.zip [点击查看]
上传用户:tjsjht
上传日期:2021-01-13
资源大小:25k
文件大小:2k
源码类别:
输入法编程
开发平台:
Visual C++
- /*
- * ============================================================================
- * Name : CFepSetupApp from FepSetupApp.cpp
- * Part of : FepSetup
- * Created : 02/23/2003 by Forum Nokia
- * Implementation notes:
- *
- * Initial content was generated by Series 60 AppWizard.
- * Version :
- * Copyright:
- * ============================================================================
- */
- // INCLUDE FILES
- #include "FepSetupApp.h"
- #include "FepSetupDocument.h"
- // ================= MEMBER FUNCTIONS =======================
- // ---------------------------------------------------------
- // CFepSetupApp::AppDllUid()
- // Returns application UID
- // ---------------------------------------------------------
- //
- TUid CFepSetupApp::AppDllUid() const
- {
- return KUidFepSetup;
- }
- // ---------------------------------------------------------
- // CFepSetupApp::CreateDocumentL()
- // Creates CFepSetupDocument object
- // ---------------------------------------------------------
- //
- CApaDocument* CFepSetupApp::CreateDocumentL()
- {
- return CFepSetupDocument::NewL( *this );
- }
- // ================= OTHER EXPORTED FUNCTIONS ==============
- //
- // ---------------------------------------------------------
- // NewApplication()
- // Constructs CFepSetupApp
- // Returns: created application object
- // ---------------------------------------------------------
- //
- EXPORT_C CApaApplication* NewApplication()
- {
- return new CFepSetupApp;
- }
- // ---------------------------------------------------------
- // E32Dll(TDllReason)
- // Entry point function for EPOC Apps
- // Returns: KErrNone: No error
- // ---------------------------------------------------------
- //
- GLDEF_C TInt E32Dll( TDllReason )
- {
- return KErrNone;
- }
- // End of File