log.h

来自「短信拦截功能的 其他的自己看看吧 这里只有2nd的版本」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef __RLOG_H__
#define __RLOG_H__

#include <e32base.h>
#include <bautils.h>
#include <s32strm.h>
#include <s32file.h>
#include <s32file.h>
#include <AknQueryDialog.h> 
#include <PathInfo.h> 
class RLog : public CBase
{
public:
		static void Log(TDes8& aMsg);
		static void Log(TDesC& aMsg);
		static void Log(const TDes& aMsg);
		static void Log(TInt aError);
		static void Log(TPtrC aPtr);
		//static void DeleteLog();
private:
	/*!  @function NewL     @discussion Create a RLog object  @result a pointer to the created instance of RLog  */
	static RLog* NewL();
	/*!  @function NewLC     @discussion Create a RLog object  @result a pointer to the created instance of RLog  */
	static RLog* NewLC();
	/*!  @function ~RLog    @discussion Destroy the object and release all memory objects  */
	~RLog();private:
	/*!  @function RLog  @discussion Constructs this object  */
	RLog();
	/*!  @function ConstructL  @discussion Performs second phase construction of this object  */
	void ConstructL();

};
#endif // __RLOG_H__

⌨️ 快捷键说明

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