equal
deleted
inserted
replaced
39 /// The ArrayMap template class is graph map structure what |
39 /// The ArrayMap template class is graph map structure what |
40 /// automatically updates the map when a key is added to or erased from |
40 /// automatically updates the map when a key is added to or erased from |
41 /// the map. This map uses the allocators to implement |
41 /// the map. This map uses the allocators to implement |
42 /// the container functionality. |
42 /// the container functionality. |
43 /// |
43 /// |
44 /// The template parameter is the Graph the current Item type and |
44 /// The template parameters are the Graph the current Item type and |
45 /// the Value type of the map. |
45 /// the Value type of the map. |
46 template <typename _Graph, typename _Item, typename _Value> |
46 template <typename _Graph, typename _Item, typename _Value> |
47 class ArrayMap |
47 class ArrayMap |
48 : public ItemSetTraits<_Graph, _Item>::ItemNotifier::ObserverBase { |
48 : public ItemSetTraits<_Graph, _Item>::ItemNotifier::ObserverBase { |
49 public: |
49 public: |