jewelapp.cpp

来自「symbian下的泡泡龙游戏源码,手机游戏开放新手学习的好资料」· C++ 代码 · 共 67 行

CPP
67
字号
/* ============================================================================
*  Name     : CJewelApp from JewelApp.cpp
*  Part of  : Jewel
*  Created  : 02.10.2005 by Thosing
* 
*  Implementation notes:
*
*     Initial content was generated by Series 60 Application Wizard.
*  Version  : 0.1
*  Copyright: Another
* ============================================================================
*/

// INCLUDE FILES
#include    "JewelApp.h"
#include    "JewelDocument.h"

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

// ---------------------------------------------------------
// CJewelApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CJewelApp::AppDllUid() const
    {
    return KUidJewel;
    }

   
// ---------------------------------------------------------
// CJewelApp::CreateDocumentL()
// Creates CJewelDocument object
// ---------------------------------------------------------
//
CApaDocument* CJewelApp::CreateDocumentL()
    {
    return CJewelDocument::NewL( *this );
    }

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

// ---------------------------------------------------------
// 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 + -
显示快捷键?