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

📄 debugentries.h

📁 Symbian s60 2rd 通话摘要例题
💻 H
字号:
#ifndef __DEBUG_ENTRIES_H__
#define __DEBUG_ENTRIES_H__

#if defined(_DEBUG)
//INCLUDES

// System includes
#include <e32base.h> // CBase

// FORWARD DECLARATIONS
class CLogClient;
class CLogEvent;

/**
* @class	CAddEntries DebugEntries.h 
* @brief	This class reads in a list of
* entries and adds them to the log, used 
* for debugging when there isn't an available 
* log file 
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
*/
class CAddEntries: public CActive
	{
public: // constructors and destructor
	static CAddEntries* NewL(CLogClient& aLogClient, TRequestStatus& aObserverRequestStatus);
	static CAddEntries* NewLC(CLogClient& aLogClient, TRequestStatus& aObserverRequestStatus);
	~CAddEntries();

public: // from CActive
	void DoCancel();
	void RunL();
	TInt RunError(TInt aError);

private: // constructors
	void ConstructL();
	CAddEntries(CLogClient& aLogClient, TRequestStatus& aObserverRequestStatus);
private: // new methods
	void ReadLogEventsL();

private: // data
	CLogClient& iLogClient;
	TRequestStatus& iObserverRequestStatus;

	TInt iNumberOfEntries;
	TInt iEntryAdded;
	RPointerArray<CLogEvent> iEventArray;
	};

#endif //(_DEBUG)
#endif	// __CALLLOGENGINE_H__

⌨️ 快捷键说明

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