📄 helpexampleapplication.h
字号:
/*
* ==============================================================================
* Name : helpexampleapplication.h
* Part of : Help example
* Interface :
* Description :
* Version :
*
* Copyright (c) 2004 - 2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef __HELPEXAMPLE_APPLICATION_H__
#define __HELPEXAMPLE_APPLICATION_H__
// INCLUDES
#include <aknapp.h>
#include "HelpExampleUID.hrh"
// CONSTANTS
// UID for the application; this should correspond to the UID
// defined in the mmp file
const TUid KUidHelpExampleApp = { HELP_UID3 };
const TUid KUidHelpFile = { HELPFILE_UID };
// CLASS DECLARATIONS
/**
* CHelpExampleApplication
* An instance of CHelpExampleApplication is the application part of the AVKON
* application framework for the HelpExample example application
*/
class CHelpExampleApplication : public CAknApplication
{
public: // from CAknApplication
/**
* AppDllUid()
* Return the application DLL UID value
* @return The UID of this Application/Dll
*/
TUid AppDllUid() const;
protected: // from CAknApplication
/**
* CreateDocumentL()
* Create a CApaDocument object and return a pointer to it
* @return A pointer to the created document
*/
CApaDocument* CreateDocumentL();
};
#endif // __HELPEXAMPLE_APPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -