rlog.h
来自「经过改造的EasyDgm」· C头文件 代码 · 共 33 行
H
33 行
#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 + =
减小字号Ctrl + -
显示快捷键?