jewelapp.h
来自「symbian下的泡泡龙游戏源码,手机游戏开放新手学习的好资料」· C头文件 代码 · 共 53 行
H
53 行
/*
* ============================================================================
* Name : CJewelApp from JewelApp.h
* Part of : Jewel
* Created : 02.10.2005 by Thosing
* Description:
* Declares main application class.
* Version : 0.1
* Copyright: Another
* ============================================================================
*/
#ifndef JEWELAPP_H
#define JEWELAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidJewel = { 0x0DDDD726 };
// CLASS DECLARATION
/**
* CJewelApp application class.
* Provides factory to create concrete document object.
*
*/
class CJewelApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CJewelDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidJewel).
* @return The value of KUidJewel.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?