logexeventform.h

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

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