ObjectLevelLockable: add copy ctor which creates a new mutex. Thanks to sourceforge::horodrigues

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@170 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2005-07-24 19:19:41 +00:00
parent c33413b35c
commit baa2869479

View file

@ -80,6 +80,11 @@ namespace Loki
{
::InitializeCriticalSection(&mtx_);
}
ObjectLevelLockable( const ObjectLevelLockable& )
{
::InitializeCriticalSection(&mtx_);
}
~ObjectLevelLockable()
{