mario2dapp.h

来自「symbian 下的mario游戏源代码」· C头文件 代码 · 共 49 行

H
49
字号
   /*
============================================================================
    * Name : CMario2DApp.h
    * Part of : 2DMario
    * Description : Definition of CMario2DApp
    * Copyright (c) 2007 Nokia Corporation
============================================================================
    */

#ifndef __MARIO2DAPP_H__
#define __MARIO2DAPP_H__

// INCLUDES
#include <eikapp.h>

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

// CLASS DECLARATION

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

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

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

		TFileName ResourceFileName() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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