mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
47 lines
908 B
C++
47 lines
908 B
C++
|
/*-
|
||
|
* See the file LICENSE for redistribution information.
|
||
|
*
|
||
|
* Copyright (c) 2011 Oracle and/or its affiliates. All rights reserved.
|
||
|
*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
#include "db_config.h"
|
||
|
|
||
|
#include "db_int.h"
|
||
|
|
||
|
#include "db_cxx.h"
|
||
|
|
||
|
DbHeapRecordId::DbHeapRecordId()
|
||
|
{
|
||
|
DB_HEAP_RID *rid = this;
|
||
|
memset(rid, 0, sizeof(DB_HEAP_RID));
|
||
|
}
|
||
|
|
||
|
DbHeapRecordId::DbHeapRecordId(db_pgno_t pgno_arg, db_indx_t indx_arg)
|
||
|
{
|
||
|
DB_HEAP_RID *rid = this;
|
||
|
memset(rid, 0, sizeof(DB_HEAP_RID));
|
||
|
set_pgno(pgno_arg);
|
||
|
set_indx(indx_arg);
|
||
|
}
|
||
|
|
||
|
DbHeapRecordId::~DbHeapRecordId()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
DbHeapRecordId::DbHeapRecordId(const DbHeapRecordId &that)
|
||
|
{
|
||
|
const DB_HEAP_RID *from = &that;
|
||
|
memcpy((DB_HEAP_RID *)this, from, sizeof(DB_HEAP_RID));
|
||
|
}
|
||
|
|
||
|
DbHeapRecordId &DbHeapRecordId::operator = (const DbHeapRecordId &that)
|
||
|
{
|
||
|
if (this != &that) {
|
||
|
const DB_HEAP_RID *from = &that;
|
||
|
memcpy((DB_HEAP_RID *)this, from, sizeof(DB_HEAP_RID));
|
||
|
}
|
||
|
return (*this);
|
||
|
}
|