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

📄 logexeventform.h

📁 Log Engine的使用
💻 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();
    
private: // Data members

	CLogEvent& iLogEvent;
		
	};

#endif	

// End of file

⌨️ 快捷键说明

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