class: etk::HashData


Description:

internel data of the etk::hash class, it contain the name and the value of the hash vector.

Constructor and Destructor:

+             HashData (const std::string & _key,
const MY_TYPE & _val);

Synopsis:

+ std::string m_key;
+ MY_TYPE m_value;

Detail:

m_key

+ std::string m_key;
name of the current hash


m_value

+ MY_TYPE m_value;
data of the current Hash


HashData

+  HashData (const std::string & _key,
const MY_TYPE & _val);
Constructor of the data for hash table.