diff -r f2d6d3446adf -r 4137ef9aacc6 lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Fri Apr 24 10:15:33 2009 +0200 +++ b/lemon/concepts/graph_components.h Fri Apr 24 11:54:48 2009 +0200 @@ -180,6 +180,9 @@ /// to convert from arcs to edges and to get both direction of edges. class BaseGraphComponent : public BaseDigraphComponent { public: + + typedef BaseGraphComponent Graph; + typedef BaseDigraphComponent::Node Node; typedef BaseDigraphComponent::Arc Arc; @@ -189,9 +192,9 @@ /// Undirected graphs can be used as directed graphs, each edge is /// represented by two opposite directed arcs. class Edge : public GraphItem<'e'> { - public: typedef GraphItem<'e'> Parent; + public: /// \brief Default constructor. /// /// Default constructor. @@ -991,12 +994,10 @@ /// The standard graph maps must conform to the ReferenceMap concept. template class GraphMap : public ReferenceMap { + typedef ReferenceMap Parent; + public: - typedef ReadWriteMap Parent; - - /// The graph type of the map. - typedef GR Graph; /// The key type of the map. typedef K Key; /// The value type of the map. @@ -1012,11 +1013,11 @@ /// \brief Construct a new map. /// /// Construct a new map for the graph. - explicit GraphMap(const Graph&) {} + explicit GraphMap(const GR&) {} /// \brief Construct a new map with default value. /// /// Construct a new map for the graph and initalize the values. - GraphMap(const Graph&, const Value&) {} + GraphMap(const GR&, const Value&) {} private: /// \brief Copy constructor. @@ -1057,7 +1058,7 @@ } const _Map &m; - const Graph &g; + const GR &g; const typename GraphMap::Value &t; }; @@ -1085,9 +1086,9 @@ /// It conforms to the ReferenceMap concept. template class NodeMap : public GraphMap { - public: typedef GraphMap Parent; + public: /// \brief Construct a new map. /// /// Construct a new map for the digraph. @@ -1123,9 +1124,9 @@ /// It conforms to the ReferenceMap concept. template class ArcMap : public GraphMap { - public: typedef GraphMap Parent; + public: /// \brief Construct a new map. /// /// Construct a new map for the digraph. @@ -1221,9 +1222,9 @@ /// It conforms to the ReferenceMap concept. template class EdgeMap : public GraphMap { - public: typedef GraphMap Parent; + public: /// \brief Construct a new map. /// /// Construct a new map for the graph.