?? taskmanagerapp.h
字號(hào):
/*
* ============================================================================
* Name : CTaskManagerApp from TaskManagerApp.h
* Part of : TaskManager
* Created : 03/13/2005 by Forum Nokia
* Description:
* Declares main application class.
* Version : 1.2
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __TASKMANAGERAPP_H__
#define __TASKMANAGERAPP_H__
// INCLUDE FILES
#include <aknapp.h>
// CONSTANTS
// UID of the application
#ifdef __SERIES60_30__
// For S60 3rd
const TUid KUidTaskManagerApp = { 0xE246da03 };
#else
// For S60 1st/2nd
const TUid KUidTaskManagerApp = { 0x0246da03 };
#endif
// CLASS DECLARATION
/**
* CTaskManagerApp application class.
* Provides factory to create concrete document object.
*
*/
class CTaskManagerApp : public CAknApplication
{
private: // Functions from base classes
/**
* From CApaApplication, creates CTaskManagerDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidTaskManagerApp).
* @return The value of KUidTaskManagerApp.
*/
TUid AppDllUid() const;
};
#endif // __TASKMANAGERAPP_H__
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -