📄 rlog.h
字号:
#ifndef __RLOG_H__
#define __RLOG_H__
#include <e32base.h>
class RLog : public CBase
{
public:
static void Log(const TDesC &aErrTypeName, const TDesC &aErrMsg);
static void Log(const TDesC & aErrMsg,const TInt aErrCode);
static void Log(const TDesC& aMsg);
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();
private:
// Member variables
};
#endif // __RLOG_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -