1#ifndef Cpl_Container_MapItem_h_
2#define Cpl_Container_MapItem_h_
57 MapItem(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor ):
DictItem( ignoreThisParameter_usedToCreateAUniqueConstructor ) {}
This concrete class implements the core functionality of for AVL Binary tree (i.e.
Definition AvlTree_.h:46
This abstract class represents a item that can be contained in Dictionary.
Definition DictItem.h:34
void * m_prevPtr_
The previous link field.
Definition Item.h:94
void * m_nextPtr_
The link field.
Definition Item.h:36
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
MapItem * getLeft() const
Get tree connection/pointer.
Definition MapItem.h:73
void initialize(MapItem *parent)
Initialize the node when being inserted in the tree.
Definition MapItem.h:61
MapItem * getRight() const
Get tree connection/pointer.
Definition MapItem.h:79
MapItem()
Constructor.
Definition MapItem.h:51
MapItem * getParent() const
Get tree connection/pointer.
Definition MapItem.h:67
Balance_T
Magic values for balance status.
Definition MapItem.h:37
MapItem(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor -->special constructor to allow a Map to be statically allocated.
Definition MapItem.h:57
Balance_T m_balance_
Balance status.
Definition MapItem.h:47
void * m_parentPtr_
Link field to the parent node.
Definition MapItem.h:41
bool m_is_NOT_root_
I am the root node.
Definition MapItem.h:44
void setLeft(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:76
void setParent(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:70
void setRight(MapItem *n)
Set tree connection/pointer.
Definition MapItem.h:82
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20