GM6000 Digital Heater Controller Branch: main
SDX-1330
DictItem.h
Go to the documentation of this file.
1#ifndef Cpl_Container_DictItem_h_
2#define Cpl_Container_DictItem_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Container/Item.h"
16#include "Cpl/Container/Key.h"
17
18
19///
20namespace Cpl {
21///
22namespace Container {
23
24
25/** This abstract class represents a item that can be contained in
26 Dictionary. The Dictionary is an ordered map implemented as a hash table
27 that can only contain item(s) with same key type. The client sub-class is
28 required to implement the 'getKey() method.
29
30 NOTE: A DictItem can also be contained in a SList and/or a DList
31 (but obviously not at the same time).
32 */
33class DictItem : public ExtendedItem
34{
35protected:
36 /** This method returns a reference to the Item's Key instance. The
37 application is responsible for implementing this method.
38 */
39 virtual const Key& getKey() const noexcept = 0;
40
41
42protected:
43 /// Remember which hash bucket I am stored in
44 unsigned int m_hashCode_;
45
46
47protected:
48 /// Constructor
50 : m_hashCode_( 0 ) {}
51
52 /** Constructor used ONLY with the child class MapItem: -->special
53 constructor to allow a Map to be statically allocated. Only the Map
54 itself should ever use this constructor -->not intended for Items in a
55 Map
56 */
57 DictItem( const char* ignoreThisParameter_usedToCreateAUniqueConstructor )
58 : ExtendedItem( ignoreThisParameter_usedToCreateAUniqueConstructor ) {}
59
60
61 // Allow the Hash table access to me
62 friend class HashTable_;
63};
64
65}; // end namespaces
66};
67#endif // end header latch
This abstract class represents a item that can be contained in Dictionary.
Definition DictItem.h:34
unsigned int m_hashCode_
Remember which hash bucket I am stored in.
Definition DictItem.h:44
DictItem(const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be stati...
Definition DictItem.h:57
virtual const Key & getKey() const noexcept=0
This method returns a reference to the Item's Key instance.
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
This concrete provides a collection of functions used by the 'Hash Table' classes.
Definition HashTable_.h:36
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20