⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drawapp.cpp

📁 一个基于symbian OS的多位图显示程序例子
💻 CPP
字号:
/* ============================================================================
*  Name     : CDrawApp from DrawApp.cpp
*  Part of  : Draw
*  Created  : 22.04.2005 by 
* 
*  Implementation notes:
*
*     Initial content was generated by Series 60 Application Wizard.
*  Version  :
*  Copyright: 
* ============================================================================
*/

// INCLUDE FILES
#include    "DrawApp.h"
#include    "DrawDocument.h"

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

// ---------------------------------------------------------
// CDrawApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CDrawApp::AppDllUid() const
    {
    return KUidDraw;
    }

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

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

// ---------------------------------------------------------
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -