graphicsapplication.h
来自「Symbian -画图程序 graphics-vc.rar」· C头文件 代码 · 共 44 行
H
44 行
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __GRAPHICS_APPLICATION_H__
#define __GRAPHICS_APPLICATION_H__
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID for the application; this should correspond
// to the uid defined in the mmp file
const TUid KUidGraphicsApp = { 0x10005BB3 };
// CLASS DECLARATION
/**
* CGraphicsApplication application class.
* An instance of CGraphicsApplication is the application part of the AVKON
* application framework for the CGraphicsApplication example application.
*/
class CGraphicsApplication : public CAknApplication
{
public: // from CAknApplication
/**
* From CApaApplication, AppDllUid.
* @return Application's UID.
*/
TUid AppDllUid() const;
protected: // Functions from base classes
/**
* From CApaApplication, CreateDocumentL.
* Creates GraphicsApplication document object.
* The returned pointer in not owned by the GraphicsApplication
* object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __GRAPHICS_APPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?