clockUtils  1.1
clockUtils::compression::algorithm::HuffmanBase::Node Struct Reference

represents a node in the probability tree if left and right are both nullptr this node is a leave and c has a valid value More...

#include <HuffmanBase.h>

Public Attributes

len_t value
 
uint8_t c
 
std::shared_ptr< Nodeleft
 
std::shared_ptr< Noderight
 

Detailed Description

represents a node in the probability tree if left and right are both nullptr this node is a leave and c has a valid value

Definition at line 57 of file HuffmanBase.h.

Member Data Documentation

§ c

uint8_t clockUtils::compression::algorithm::HuffmanBase::Node::c

Definition at line 59 of file HuffmanBase.h.

§ left

std::shared_ptr<Node> clockUtils::compression::algorithm::HuffmanBase::Node::left

Definition at line 60 of file HuffmanBase.h.

§ right

std::shared_ptr<Node> clockUtils::compression::algorithm::HuffmanBase::Node::right

Definition at line 61 of file HuffmanBase.h.

§ value

len_t clockUtils::compression::algorithm::HuffmanBase::Node::value

Definition at line 58 of file HuffmanBase.h.


The documentation for this struct was generated from the following file: