⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ccontapp.h

📁 实现好友名单。可以今天添加、删除以及增加等操作
💻 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 + -