📄 ccontapp.h
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */
#ifndef __CCONTAPP_H__
#define __CCONTAPP_H__
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidContacts = { 0x10005B73 };
// CLASS DECLARATION
/**
* CContApp application class.
* Provides factory to create concrete document object.
*
*/
class CContApp : public CAknApplication
{
private:
/**
* From CApaApplication, creates CContDocument document object
* @return A pointer to the created document object
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidContacts)
* @return The value of KUidContacts
*/
TUid AppDllUid() const;
};
#endif // __CCONTAPP_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -