1#ifndef Cpl_Container_Item_h_
2#define Cpl_Container_Item_h_
105 ExtendedItem(
const char* ignoreThisParameter_usedToCreateAUniqueConstructor ):
Item( ignoreThisParameter_usedToCreateAUniqueConstructor ) {}
120template <
class REFITEM,
class ITEMTYPE>
135 ReferenceItem( REFITEM& item,
const char* ignoreThisParameter_usedToCreateAUniqueConstructor ): ITEMTYPE( ignoreThisParameter_usedToCreateAUniqueConstructor ),
m_reference( item ) {}
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
void * m_prevPtr_
The previous link field.
Definition Item.h:94
ExtendedItem(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:105
ExtendedItem()
Constructor.
Definition Item.h:98
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
void * m_inListPtr_
Debug field.
Definition Item.h:41
Item(const char *)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:52
bool insert_(void *newContainerPtr)
Helper method to trap when inserting an item in multiple containers.
void * m_nextPtr_
The link field.
Definition Item.h:36
Item()
Constructor.
Definition Item.h:45
static void remove_(Item *itemPtr) noexcept
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an ite...
bool isInContainer_(const void *containerPtr) const noexcept
Returns 'true' if the instance is in the specified container.
This template class defines wrapper class - that is makes a reference 'listable'.
Definition Item.h:122
REFITEM & m_reference
Reference to the item that is being 'containerized'.
Definition Item.h:125
ReferenceItem(REFITEM &item)
Constructor.
Definition Item.h:128
ReferenceItem(REFITEM &item, const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition Item.h:135
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20