Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <S32BTREE.H>
Link against: estor.lib

Class TBtreeFixBase

class TBtreeFixBase : public TBtree;

Description

Base class for TBtreeFix, which provides a B-tree for fixed sized entries.

Derivation

Members

Defined in TBtreeFixBase:

Inherited from TBtree:


Construction and destruction


TBtreeFixBase(TBtreeMode,TInt,TInt)

protected: IMPORT_C TBtreeFixBase(TBtreeMode aMode, TInt anEntrySize, TInt aKeySize);

Description

Parameters

TBtreeMode aMode

TInt anEntrySize

TInt aKeySize


TBtreeFixBase(const TBtreeToken &,TBtreeMode,TInt,TInt)

protected: IMPORT_C TBtreeFixBase(const TBtreeToken &aToken, TBtreeMode aMode, TInt anEntrySize, TInt aKeySize);

Description

Parameters

const TBtreeToken &aToken

TBtreeMode aMode

TInt anEntrySize

TInt aKeySize

[Top]


Member functions


Connect(MPagePool *,const MBtreeKey *)

IMPORT_C void Connect(MPagePool *aPool, const MBtreeKey *aKey);

Description

Initalises the B-tree with a page pool and key handler.

Parameters

MPagePool *aPool

Page pool to provide storage for the B-tree

const MBtreeKey *aKey

Key handler for the B-tree


InsertL(TBtreePos &,const TAny *,TAllowDuplicates)

IMPORT_C TBool InsertL(TBtreePos &aPos, const TAny *anEntry, TAllowDuplicates aDup=ENoDuplicates);

Description

Inserts an entry into the tree.

Parameters

TBtreePos &aPos

On return, the position of the entry inserted

const TAny *anEntry

Pointer to the entry to insert

TAllowDuplicates aDup

Flag to indicate whether duplicate entries are allowed in the tree

Return value

TBool

True if successful, false if the entry was a duplicate and aDup was set to ENoDuplicates


ExtractAtL(const TBtreePos &,TAny *)const

IMPORT_C void ExtractAtL(const TBtreePos &aPos, TAny *anEntry) const;

Description

Gets the entry at the specified position.

Parameters

const TBtreePos &aPos

Position of the entry to get

TAny *anEntry

Buffer into which to copy the entry.


ExtractAtL(const TBtreeMark &,TAny *)const

IMPORT_C void ExtractAtL(const TBtreeMark &aMark, TAny *anEntry) const;

Description

Gets the entry at the specified iterator position.

Parameters

const TBtreeMark &aMark

Position of the entry to get

TAny *anEntry

Buffer into which to copy the entry.