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

模拟服务器

开发平台:

C/C++

  1. #ifndef KAutoMutexH
  2. #define KAutoMutexH
  3. class KMutex;
  4. class ENGINE_API KAutoMutex
  5. {
  6. private:
  7. KMutex* m_pMutex;
  8. public:
  9. KAutoMutex(KMutex* pMutex);
  10. ~KAutoMutex();
  11. };
  12. #endif