/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997, 2010 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); }