2011-09-13 17:48:33 +00:00
|
|
|
/*-
|
|
|
|
* See the file LICENSE for redistribution information.
|
|
|
|
*
|
2012-11-14 20:13:24 +00:00
|
|
|
* Copyright (c) 1997, 2012 Oracle and/or its affiliates. All rights reserved.
|
2011-09-13 17:48:33 +00:00
|
|
|
*
|
|
|
|
* $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);
|
|
|
|
}
|