LogFile.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // LogFile.h: interface for the CLogFile class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifndef __LOGFILE_H__
  5. #define __LOGFILE_H__
  6. #include "STL.h"
  7. #include "windows.h"
  8. class CLogFile  
  9. {
  10. public:
  11.          CLogFile();
  12. virtual ~CLogFile();
  13. void     SetFileName( const string filename );
  14. void     Write( const char * fmt , ... );
  15. private:
  16. string  fileName;
  17. //为了访问线更安全,使用临界区控制链表
  18. CRITICAL_SECTION session;
  19. };
  20. #endif // !defined(AFX_LOGFILE_H__C529E971_B724_4980_90EB_5FCC5846BDEE__INCLUDED_)