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

📄 cmmslapp.h

📁 The MMS List example demonstrates how to: List the MMS messages in the Inbox and sort them by sen
💻 H
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */

#ifndef __CMMSLAPP_H__
#define __CMMSLAPP_H__

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
static const TUid KUidMmsl = { 0x10005B70 };

// CLASS DECLARATION

/**
* CMmslApp application class.
* Provides factory to create concrete document object.
*
*/
class CMmslApp : public CAknApplication
    {
    private:

        /**
        * From CApaApplication,CreateDocumentL
        * Creates CMmslDocument document object.
        * @return A pointer to the created document object
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication,AppDllUid
        * Returns application's UID (KUidMmsl).
        * @return The value of KUidMmsl
        */
        TUid AppDllUid() const;
    };

#endif	// __CMMSLAPP_H__

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -