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,Constructor of the data for hash table.
const MY_TYPE & _val);
Parameter [input]: | _key | name of the hash table. | Parameter [input]: | _val | Value of the hash element. |