?? graphicsapplication.h
字號(hào):
/* 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -