I usually use C++ stdlib map whenever I need to store some data associated with a specific type of value (a key value - e.g. a string or other object). The stdlib map implem
See std::hash_map from SGI.
This is included in the STLPort distribution as well.