ManualResetEvent.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #include "ManualResetEvent.h"
  2. /*
  3.  * namespace OnlineGameLib::Win32
  4.  */
  5. namespace OnlineGameLib {
  6. namespace Win32 {
  7. CManualResetEvent::CManualResetEvent( bool initialState /* = false */ )
  8.    : CEvent( 0, true, initialState )
  9. {
  10. }
  11. CManualResetEvent::CManualResetEvent( const _tstring &name, bool initialState /* = false */ )
  12.    : CEvent( 0, true, initialState, name )
  13. {
  14.    
  15. }
  16. } // End of namespace OnlineGameLib
  17. } // End of namespace Win32