COIN-OR::LEMON - Graph Library

Changeset 313:64f8f7cc6168 in lemon for lemon/maps.h


Ignore:
Timestamp:
10/09/08 10:09:44 (16 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Fix several doxygen warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/maps.h

    r301 r313  
    4444  class MapBase {
    4545  public:
    46     /// \biref The key type of the map.
     46    /// \brief The key type of the map.
    4747    typedef K Key;
    4848    /// \brief The value type of the map.
     
    22672267    ///
    22682268    /// Constructor
    2269     /// \param _digraph The digraph that the map belongs to.
     2269    /// \param digraph The digraph that the map belongs to.
    22702270    explicit SourceMap(const Digraph& digraph) : _digraph(digraph) {}
    22712271
     
    23062306    ///
    23072307    /// Constructor
    2308     /// \param _digraph The digraph that the map belongs to.
     2308    /// \param digraph The digraph that the map belongs to.
    23092309    explicit TargetMap(const Digraph& digraph) : _digraph(digraph) {}
    23102310
     
    23452345    ///
    23462346    /// Constructor
    2347     /// \param _graph The graph that the map belongs to.
     2347    /// \param graph The graph that the map belongs to.
    23482348    explicit ForwardMap(const Graph& graph) : _graph(graph) {}
    23492349
     
    23842384    ///
    23852385    /// Constructor
    2386     /// \param _graph The graph that the map belongs to.
     2386    /// \param graph The graph that the map belongs to.
    23872387    explicit BackwardMap(const Graph& graph) : _graph(graph) {}
    23882388
Note: See TracChangeset for help on using the changeset viewer.