#include <RedBlackNode.h>
Public Member Functions | |
RedBlackNode (Data *NodeData) | |
Constructor. | |
~RedBlackNode () | |
Destructor. | |
Public Attributes | |
RedBlackNode< Data > * | m_Left |
Pointer to the left node. | |
RedBlackNode< Data > * | m_Right |
Pointer to the right node. | |
RedBlackNode< Data > * | m_Up |
Pointer to the upper node on the tree. | |
RedBlackNodeColor | m_Color |
Color of the node. | |
Data * | m_Data |
Pointer to the data in the node. |
Definition at line 19 of file RedBlackNode.h.