LogFile.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // LogFile.h: interface for the CLogFile class.
- //
- //////////////////////////////////////////////////////////////////////
- #ifndef __LOGFILE_H__
- #define __LOGFILE_H__
- #include "STL.h"
- #include "windows.h"
- class CLogFile
- {
- public:
- CLogFile();
- virtual ~CLogFile();
- void SetFileName( const string filename );
- void Write( const char * fmt , ... );
- private:
- string fileName;
- //为了访问线更安全,使用临界区控制链表
- CRITICAL_SECTION session;
- };
- #endif // !defined(AFX_LOGFILE_H__C529E971_B724_4980_90EB_5FCC5846BDEE__INCLUDED_)