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

📄 logexampleapp.h

📁 专业的用于查询手机通话记录的代码
💻 H
字号:
/*
 * ============================================================================
 *  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -