📄 powerresmanapplication.h
字号:
/**
*
* CPowerResManApplication PowerResManApplication.h
* This is the main application class for the System Agent example.
*
* It provides a factory to create a concrete document object, and a method to retrieve
* the application's UID.
*
* Copyright (c) 2004 Nokia Corporation
* version 2.0
*/
#ifndef __POWERRESMANAPPLICATION_H__
#define __POWERRESMANAPPLICATION_H__
// INCLUDES
// System includes
#include <aknapp.h> // CAknApplication
// CONSTANTS
// UID of the application
#ifdef __SERIES60_3X__
const TUid KUidPowerResMan = { 0xE01FDA99 };
#else
const TUid KUidPowerResMan = { 0x101FDA99 };
#endif
// CLASS DECLARATION
class CPowerResManApplication : public CAknApplication
{
private:
// from CAknApplication
/**
* Function: CreateDocumentL
* Description: Create a CApaDocument object and return a pointer to it.
* Returns: A pointer to the created document
*/
CApaDocument* CreateDocumentL();
/**
* Function: AppDllUid
* Description: Return the application DLL UID value
* Returns: The UID of this Application Dll
*/
TUid AppDllUid() const;
};
#endif // __POWERRESMANAPPLICATION_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -