COIN-OR::LEMON - Graph Library

Changeset 1631:e15162d8eca1 in lemon-0.x for lemon/concept


Ignore:
Timestamp:
08/16/05 21:06:59 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2139
Message:

Fixed most (but not all) of Doxygen warnings

Location:
lemon/concept
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • lemon/concept/graph.h

    r1630 r1631  
    405405        /// This constructor sets the iterator to the first edge of \c g.
    406406        ///@param g the graph
    407         EdgeIt(const StaticGraph&) { }
     407        EdgeIt(const StaticGraph& g) { }
    408408        /// Edge -> EdgeIt conversion
    409409
  • lemon/concept/graph_component.h

    r1627 r1631  
    764764
    765765    /// This class describes the common interface of the graph maps
    766     /// (NodeMap, EdgeMap), that is \ref maps-pages "maps" which can be used to
     766    /// (NodeMap, EdgeMap), that is \ref maps-page "maps" which can be used to
    767767    /// associate data to graph descriptors (nodes or edges).
    768768    template <typename Graph, typename Item, typename _Value>
  • lemon/concept/undir_graph.h

    r1630 r1631  
    233233    ///
    234234    /// In LEMON undirected graphs also fulfill the concept of directed
    235     /// graphs (\ref lemon::concept::Graph "Graph Concept"). For
     235    /// graphs (\ref lemon::concept::StaticGraph "Graph Concept"). For
    236236    /// explanation of this and more see also the page \ref undir_graphs,
    237237    /// a tutorial about undirected graphs.
     
    558558        /// This constructor sets the iterator to the first edge of \c g.
    559559        ///@param g the graph
    560         EdgeIt(const UndirGraph&) { }
     560        EdgeIt(const UndirGraph &g) { }
    561561        /// Edge -> EdgeIt conversion
    562562
     
    606606        ///@param n the node
    607607        ///@param g the graph
    608         OutEdgeIt(const UndirGraph&, const Node&) { }
     608        OutEdgeIt(const UndirGraph& n, const Node& g) { }
    609609        /// Edge -> OutEdgeIt conversion
    610610
     
    655655        ///@param n the node
    656656        ///@param g the graph
    657         InEdgeIt(const UndirGraph&, const Node&) { }
     657        InEdgeIt(const UndirGraph& g, const Node& n) { }
    658658        /// Edge -> InEdgeIt conversion
    659659
Note: See TracChangeset for help on using the changeset viewer.