📄 guard.h
字号:
//**********************************************************************
//
// Copyright (C) 2005-2007 Zhang bao yuan(bolidezhang@gmail.com).
// All rights reserved.
//
// This copy of Socketlib is licensed to you under the terms described
// in the LICENSE.txt file included in this distribution.
//
//**********************************************************************
#pragma once
namespace SYNC
{
template <class TMutex>
class CGuard
{
private:
//= Prevent assignment and initialization.
// Disallow copying and assignment.
CGuard(const CGuard &);
void operator= (const CGuard &);
public:
CGuard(TMutex & mtx)
: m_mtx(mtx)
{
m_mtx.Lock();
};
CGuard(TMutex & mtx, DWORD nTimeOut)
: m_mtx(mtx)
{
m_mtx.Lock(nTimeOut);
};
~CGuard(void)
{
m_mtx.UnLock();
};
private:
TMutex &m_mtx;
};
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -