mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
41 lines
877 B
C++
41 lines
877 B
C++
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 1997, 2011 Oracle and/or its affiliates. All rights reserved.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "db_config.h"
|
|
|
|
#include "db_int.h"
|
|
|
|
#include "db_cxx.h"
|
|
#include "dbinc/cxx_int.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// DbLock //
|
|
// //
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
DbLock::DbLock(DB_LOCK value)
|
|
: lock_(value)
|
|
{
|
|
}
|
|
|
|
DbLock::DbLock()
|
|
{
|
|
memset(&lock_, 0, sizeof(DB_LOCK));
|
|
}
|
|
|
|
DbLock::DbLock(const DbLock &that)
|
|
: lock_(that.lock_)
|
|
{
|
|
}
|
|
|
|
DbLock &DbLock::operator = (const DbLock &that)
|
|
{
|
|
lock_ = that.lock_;
|
|
return (*this);
|
|
}
|