ACE
6.5.11
|
#include "ace/Default_Constants.h"
#include "ace/Functor_T.h"
#include "ace/Log_Category.h"
#include "ace/Unbounded_Set.h"
#include "ace/Hash_Multi_Map_Manager_T.inl"
#include "ace/Hash_Multi_Map_Manager_T.cpp"
The code in Hash_Multi_Map_Manager_T.* was based on the code in Hash_Map_Manager_T.*.
ACE_Hash_Multi_Map_Manager maps a key type to more than one value types. The template takes the key and value types as parameters. The bind and unbind operations can take a key and the value or the set of the values that is to be associated with that key. The find operation can take a key or a key and the value that is associated with the key.
ACE_Hash_Multi_Map_Manager uses ACE_Unbounded_Set
to store differet values with the same key.