equal
deleted
inserted
replaced
26 ///\brief Graph maps that construct and destruct |
26 ///\brief Graph maps that construct and destruct |
27 ///their elements dynamically. |
27 ///their elements dynamically. |
28 |
28 |
29 namespace lemon { |
29 namespace lemon { |
30 |
30 |
31 /// \addtogroup graphmapfactory |
|
32 /// @{ |
|
33 |
31 |
34 template <typename _Graph, typename _Item, typename _Value> |
32 template <typename _Graph, typename _Item, typename _Value> |
35 struct DefaultMapSelector { |
33 struct DefaultMapSelector { |
36 typedef ArrayMap<_Graph, _Item, _Value> Map; |
34 typedef ArrayMap<_Graph, _Item, _Value> Map; |
37 }; |
35 }; |
266 }; |
264 }; |
267 |
265 |
268 |
266 |
269 }; |
267 }; |
270 |
268 |
271 /// @} |
|
272 } |
269 } |
273 |
270 |
274 #endif |
271 #endif |