LogTrace.h
资源名称:语音程序.rar [点击查看]
上传用户:lczygg
上传日期:2007-07-03
资源大小:2947k
文件大小:1k
源码类别:
语音合成与识别
开发平台:
Visual C++
- ////////////////////////////////////////////////////////////////////////
- // LogTrace.cpp -- Interface for the CLogTrace class
- // A class to do debug logging
- #ifndef __LOGTRACE_H__
- #define __LOGTRACE_H__
- class CLogTrace
- {
- // Construction/Destruction
- public:
- CLogTrace();
- ~CLogTrace();
- // Attributes
- public:
- CString m_strAppName;
- protected:
- BOOL m_bActive;
- CString m_strFileName;
- BOOL m_bTimeStamp;
- // Operations
- public:
- void WriteLine(LPCTSTR szLine);
- void WriteLine(LPCTSTR szFormat, LPCTSTR szAddInfo);
- void WriteLine(LPCTSTR szFormat, int nAddInfo);
- void ResetFile();
- void OnStartup(BOOL bActive, BOOL bTimeStamp);
- void SetFileName(LPCTSTR szFileName);
- protected:
- // Inlines
- public:
- inline void SetActive(BOOL bSet)
- {
- m_bActive = bSet;
- }
- inline CString GetFileName()
- {
- return m_strFileName;
- }
- };
- #endif // __LOGTRACE_H__