logexampleapp.h

来自「专业的用于查询手机通话记录的代码」· C头文件 代码 · 共 57 行

H
57
字号
/*
 * ============================================================================
 *  Name     : CLogExampleApp from LogExampleApp.h
 *  Part of  : LogExample
 *  Created  : 26.05.2005 by Forum Nokia 
 *  Description:
 *     Declares main application class.
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __LOGEXAMPLEAPP_H__
#define __LOGEXAMPLEAPP_H__

// INCLUDE FILES
#include <aknapp.h>

// CONSTANTS
// UID of the application
#if defined __SERIES60_3X__
const TUid KUidLogExample = { 0xEA1E2B6C };
#else
const TUid KUidLogExample = { 0x0C490138 };
#endif

// CLASS DECLARATION

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

public:
    // Functions from base classes

private:

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

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

#endif

// End of File

⌨️ 快捷键说明

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