📄 sysinfo60app.h
字号:
/*
* ============================================================================
* Name : CSYSINFO60App from SYSINFO60App.h
* Part of : SYSINFO60
* Created : 10.05.2003 by Petri-Veikko Alaj鋜vi OH1GIU
* Description:
* Declares main application class.
* Version :
* Copyright: (c) 2003, Petri-Veikko Alaj鋜vi OH1GIU
* ============================================================================
*/
#ifndef SYSINFO60APP_H
#define SYSINFO60APP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidSYSINFO60 = { 0x101F9FC6 };
// CLASS DECLARATION
/**
* CSYSINFO60App application class.
* Provides factory to create concrete document object.
*
*/
class CSYSINFO60App : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CSYSINFO60Document document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidSYSINFO60).
* @return The value of KUidSYSINFO60.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -