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

📄 logexeventform.h

📁 专业的用于查询手机通话记录的代码
💻 H
字号:
/*
 * ============================================================================
 *  Name     : CLogExEventForm from LogExEventForm.h
 *  Part of  : LogEx
 *  Created  : 26.05.2005 by Forum Nokia 
 *  Description:
 *     provides interface to Log engine
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __LOGEXEVENTFORM_H__
#define __LOGEXEVENTFORM_H__

// INCLUDE FILES
#include <aknform.h> // CAknForm
#include <logwrap.h> // CLogEvent

// CLASS DECLARATION
class CLogExEventForm : public CAknForm
    {
public:

    /**
     * Two phased constructor
     * @param aLogEvent
     */
    static CLogExEventForm* NewL(CLogEvent& aLogEvent);

private:

    /**
     * Default constructor
     * @param aLogEvent
     */
    CLogExEventForm(CLogEvent& aLogEvent);

private:
    // Functions from base class

    /**
     * Initializes the form from the base class
     */
    void PreLayoutDynInitL();

    /**
     * Converts UTC time to local time.
     * Implemented only for 3rd Edition platform.
     * 
     * @param aUTC UTC time
     */
    #ifdef __SERIES60_3X__
    void UTCToLocalTimeL(TTime& aTime);
    #endif
    
private:
    // Data members

    CLogEvent& iLogEvent;
    };

#endif	

// End of file

⌨️ 快捷键说明

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