gpiapp.cpp

来自「一个SYMBIAN下网上购物软件,通过本软件可以列出服务器上所有的物品种类等」· C++ 代码 · 共 76 行

CPP
76
字号
/*
* ============================================================================
*  Name     : CGPIApp from GPIApp.cpp
*  Part of  : GPI
*  Created  : 2008-11-20 by 
*  Implementation notes:
*
*     Initial content was generated by Series 60 AppWizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include    "GPIApp.h"
#include    "GPIDocument.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CGPIApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CGPIApp::AppDllUid() const
    {
    return KUidGPI;
    }

// ---------------------------------------------------------
// CDictionaryStore* CGPIApp::OpenIniFileLC(RFs& aFs) const
// overrides CAknApplication::OpenIniFileLC to enable INI file support
// ---------------------------------------------------------
//
CDictionaryStore* CGPIApp::OpenIniFileLC(RFs& aFs) const
{
    return CEikApplication::OpenIniFileLC(aFs);
}
   
// ---------------------------------------------------------
// CGPIApp::CreateDocumentL()
// Creates CGPIDocument object
// ---------------------------------------------------------
//
CApaDocument* CGPIApp::CreateDocumentL()
    {
    return CGPIDocument::NewL( *this );
    }

// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication() 
// Constructs CGPIApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
    {
    return new CGPIApp;
    }

// ---------------------------------------------------------
// E32Dll(TDllReason) 
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
    {
    return KErrNone;
    }

// End of File  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?