lemon/bits/default_map.h
changeset 1778 4ba7965386fb
parent 1672 85e30ec7c957
child 1820 22099ef840d7
equal deleted inserted replaced
3:2c3aa23b456f 4:16d90c16ae42
    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