sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// Class TDbRecordId
|
sl@0
|
17 |
inline TDbRecordId::TDbRecordId(TUint32 aValue)
|
sl@0
|
18 |
: iValue(aValue)
|
sl@0
|
19 |
{}
|
sl@0
|
20 |
inline TDbRecordId& TDbRecordId::operator=(TUint32 aValue)
|
sl@0
|
21 |
{iValue=aValue;return *this;}
|
sl@0
|
22 |
inline TBool TDbRecordId::operator==(TDbRecordId anId) const
|
sl@0
|
23 |
{return iValue==anId.iValue;}
|
sl@0
|
24 |
inline TBool TDbRecordId::operator!=(TDbRecordId anId) const
|
sl@0
|
25 |
{return iValue!=anId.iValue;}
|
sl@0
|
26 |
inline TUint32 TDbRecordId::Value() const
|
sl@0
|
27 |
{return iValue;}
|
sl@0
|
28 |
|
sl@0
|
29 |
// Class CDbRecordBase
|
sl@0
|
30 |
inline TBool CDbRecordBase::OpenL()
|
sl@0
|
31 |
{return iFlags&(EOpen|EBroken) ? iFlags&EBroken : DoRestoreL();}
|
sl@0
|
32 |
inline void CDbRecordBase::Abandon()
|
sl@0
|
33 |
{iFlags=0;}
|
sl@0
|
34 |
inline TBool CDbRecordBase::IsBroken() const
|
sl@0
|
35 |
{return iFlags&EBroken;}
|
sl@0
|
36 |
inline void CDbRecordBase::MarkIntact()
|
sl@0
|
37 |
{iFlags=(iFlags&~EBroken)|EOpen;}
|
sl@0
|
38 |
|
sl@0
|
39 |
// Class CDbRecordIter
|
sl@0
|
40 |
inline CDbRecordBase& CDbRecordIter::Host() const
|
sl@0
|
41 |
{return iHost;}
|
sl@0
|
42 |
inline CDbRecordIter::TDeleted CDbRecordIter::DeletedL(TDbPosition aPosition,TDbRecordId aRecordId)
|
sl@0
|
43 |
{return DoDeletedL(aPosition,aRecordId,0);}
|
sl@0
|
44 |
inline CDbRecordIter::TDeleted CDbRecordIter::DeletedL(TDbPosition aPosition,TDbRecordId aRecordId,const RDbTableRow& aRow)
|
sl@0
|
45 |
{return DoDeletedL(aPosition,aRecordId,&aRow);}
|
sl@0
|
46 |
|
sl@0
|
47 |
// Class CDbBlobSpace
|
sl@0
|
48 |
inline TInt CDbBlobSpace::InlineLimit() const
|
sl@0
|
49 |
{return iInlineLimit;}
|
sl@0
|
50 |
inline void CDbBlobSpace::SetInlineLimit(TInt anInlineLimit)
|
sl@0
|
51 |
{iInlineLimit=anInlineLimit;}
|