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

📄 example2dapp.h

📁 Symbian OS S60平台2D游戏引擎案例
💻 H
字号:
   /*
============================================================================
    * Name : CExample2DApp.h
    * Part of : 2DExample
    * Description : Definition of CExample2DApp
    * Copyright (c) 2007 Nokia Corporation
============================================================================
    */

#ifndef __EXAMPLE2DAPP_H__
#define __EXAMPLE2DAPP_H__

// INCLUDES
#include <eikapp.h>

// CONSTANTS
// UID of the application
const TUid KUidExample2D = { 0xe01ff1c4 };

// CLASS DECLARATION

/**
* CExample2DApp application class.
* Provides factory to create concrete document object.
*
*/
class CExample2DApp : public CEikApplication
    {
	private:

        /**
        * From CApaApplication, creates CExample2DDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication, returns application's UID (KUidExample2D).
        * @return The value of KUidExample2D.
        */
        TUid AppDllUid() const;

		TFileName ResourceFileName() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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