Hash_map implementation

I need a hash_map API in which a unique number will be the key, FOUR values, a boost::gregorian_date,and three double values will be maped under the unique number. How can i do that?

Thanks in advance
The stdlib's hash map container is named std::unordered_map. Map the UID to a structure containing the values.
Last edited on
Topic archived. No new replies allowed.