example2dapp.h

来自「基于SYMBIAN OS,series 60平台的经典游戏,超级马力」· C头文件 代码 · 共 52 行

H
52
字号
/*
* ============================================================================
*  Name     : CExample2DApp from Example2DApp.h
*  Part of  : Example2D
*  Created  : 23.09.2005 by 
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef __EXAMPLE2DAPP_H__
#define __EXAMPLE2DAPP_H__

// INCLUDES
#include <eikapp.h>

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

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