Changeset 313:64f8f7cc6168 in lemon for lemon/maps.h
- Timestamp:
- 10/09/08 10:09:44 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/maps.h
r301 r313 44 44 class MapBase { 45 45 public: 46 /// \b iref The key type of the map.46 /// \brief The key type of the map. 47 47 typedef K Key; 48 48 /// \brief The value type of the map. … … 2267 2267 /// 2268 2268 /// Constructor 2269 /// \param _digraph The digraph that the map belongs to.2269 /// \param digraph The digraph that the map belongs to. 2270 2270 explicit SourceMap(const Digraph& digraph) : _digraph(digraph) {} 2271 2271 … … 2306 2306 /// 2307 2307 /// Constructor 2308 /// \param _digraph The digraph that the map belongs to.2308 /// \param digraph The digraph that the map belongs to. 2309 2309 explicit TargetMap(const Digraph& digraph) : _digraph(digraph) {} 2310 2310 … … 2345 2345 /// 2346 2346 /// Constructor 2347 /// \param _graph The graph that the map belongs to.2347 /// \param graph The graph that the map belongs to. 2348 2348 explicit ForwardMap(const Graph& graph) : _graph(graph) {} 2349 2349 … … 2384 2384 /// 2385 2385 /// Constructor 2386 /// \param _graph The graph that the map belongs to.2386 /// \param graph The graph that the map belongs to. 2387 2387 explicit BackwardMap(const Graph& graph) : _graph(graph) {} 2388 2388
Note: See TracChangeset
for help on using the changeset viewer.