ccontapp.h

来自「基于symbian OS的IP前缀添加器.可以在通话前为电话加一个IP的功能.」· C头文件 代码 · 共 43 行

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