cmmslapp.h

来自「The MMS List example demonstrates how to」· C头文件 代码 · 共 42 行

H
42
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?