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

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/02/14
  3. file base: Thread
  4. file ext: h
  5. author: liupeng
  6. purpose:
  7. *********************************************************************/
  8. #ifndef __INCLUDE_THREAD_H__
  9. #define __INCLUDE_THREAD_H__
  10. #if defined (_MSC_VER) && (_MSC_VER >= 1020)
  11. #pragma once
  12. #endif
  13. #ifndef _WINDOWS_
  14. #define WIN32_LEAN_AND_MEAN
  15. #include <windows.h>
  16. #undef WIN32_LEAN_AND_MEAN
  17. #endif
  18. /*
  19.  * namespace OnlineGameLib::Win32
  20.  */
  21. namespace OnlineGameLib {
  22. namespace Win32 {
  23. /*
  24.  * CThread
  25.  */
  26. class CThread 
  27. {
  28. public:
  29. CThread();
  30. virtual ~CThread();
  31. HANDLE GetHandle() const;
  32. void Wait() const;
  33. bool Wait( DWORD timeoutMillis ) const;
  34. void Start();
  35. void Terminate( DWORD exitCode = 0 );
  36. private:
  37. virtual int Run() = 0;
  38. static unsigned int __stdcall ThreadFunction( void *pV );
  39. HANDLE m_hThread;
  40. /*
  41.  * No copies do not implement
  42.  */
  43. CThread( const CThread &rhs );
  44. CThread &operator=( const CThread &rhs );
  45. };
  46. } // End of namespace OnlineGameLib
  47. } // End of namespace Win32
  48. #endif //__INCLUDE_THREAD_H__