1#ifndef Cpl_Container_Map_h_
2#define Cpl_Container_Map_h_
58 Map(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor );
96 ITEM*
next( ITEM& current )
const;
132 const Map& operator=(
const Map& m );
143 :m_tree( ignoreThisParameter_usedToCreateAUniqueConstructor )
156 while ( (nextPtr=getFirst()) )
174 return m_tree.insert( node );
181 ITEM* nodePtr = find( keyOfItemToDelete );
184 return (ITEM*) m_tree.removeItem( *nodePtr );
192 return m_tree.removeItem( node ) != 0;
198 ITEM* nodePtr = first();
201 return (ITEM*) m_tree.removeItem( *nodePtr );
209 ITEM* nodePtr = last();
212 return (ITEM*) m_tree.removeItem( *nodePtr );
226 return node.isInContainer_(
this );
232 return (
ITEM*) m_tree.first();
238 return (
ITEM*) m_tree.last();
244 return (
ITEM*) m_tree.next( current );
250 return (
ITEM*) m_tree.previous( current );
This concrete class implements the core functionality of for AVL Binary tree (i.e.
Definition AvlTree_.h:46
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
This template class implements an Map using an AVL Binary tree (i.e.
Definition Map.h:34
ITEM * getLast()
Removes the last item in the list.
Definition Map.h:207
bool removeItem(ITEM &node)
Removes the specified item from the tree.
Definition Map.h:190
Map(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
This is a special constructor for when the Map is statically declared (i.e.
Definition Map.h:142
void move(Map< ITEM > &dst)
Moves the content of the this Map to the specified Map.
Definition Map.h:149
ITEM * remove(const Key &keyOfItemToDelete)
Removes the node (if it exists) that has the matching key.
Definition Map.h:179
ITEM * next(ITEM ¤t) const
Returns the next item in the tree. Returns 0 if at the end-of-tree.
Definition Map.h:242
bool isInMap(ITEM &node) const
Returns true if the specified item is in the map; else false is returned.
Definition Map.h:224
ITEM * last() const
Returns the last item in the tree. Returns 0 if tree is empty.
Definition Map.h:236
ITEM * find(const Key &keyToFind) const
Searches for a item with a matching key.
Definition Map.h:218
bool insert(ITEM &node)
Inserts an item into the tree.
Definition Map.h:172
Map() noexcept
Constructor.
Definition Map.h:41
ITEM * previous(ITEM ¤t) const
Returns the previous item in the tree. Returns 0 if at the start-of-tree.
Definition Map.h:248
ITEM * getFirst()
Removes the first item in the list.
Definition Map.h:196
void clearTheMap()
Empties the Map.
Definition Map.h:163
ITEM * first() const
Returns the first item in the tree. Returns 0 if tree is empty.
Definition Map.h:230
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20