lemon/concepts/graph_components.h
changeset 2485 88aa7870756a
parent 2474 e6368948d5f7
child 2553 bfced05fa852
     1.1 --- a/lemon/concepts/graph_components.h	Mon Oct 01 19:23:16 2007 +0000
     1.2 +++ b/lemon/concepts/graph_components.h	Tue Oct 02 12:34:43 2007 +0000
     1.3 @@ -1482,15 +1482,12 @@
     1.4        ///
     1.5        template <typename _Value>
     1.6        class NodeMap : public GraphMap<Graph, Node, _Value> {
     1.7 -      private:
     1.8 -	NodeMap();
     1.9        public:
    1.10          typedef GraphMap<MappableGraphComponent, Node, _Value> Parent;
    1.11  
    1.12  	/// \brief Construct a new map.
    1.13  	///
    1.14  	/// Construct a new map for the graph.
    1.15 -	/// \todo call the right parent class constructor
    1.16  	explicit NodeMap(const MappableGraphComponent& graph) 
    1.17            : Parent(graph) {}
    1.18  
    1.19 @@ -1522,15 +1519,12 @@
    1.20        ///
    1.21        template <typename _Value>
    1.22        class EdgeMap : public GraphMap<Graph, Edge, _Value> {
    1.23 -      private:
    1.24 -	EdgeMap();
    1.25        public:
    1.26          typedef GraphMap<MappableGraphComponent, Edge, _Value> Parent;
    1.27  
    1.28  	/// \brief Construct a new map.
    1.29  	///
    1.30  	/// Construct a new map for the graph.
    1.31 -	/// \todo call the right parent class constructor
    1.32  	explicit EdgeMap(const MappableGraphComponent& graph) 
    1.33            : Parent(graph) {}
    1.34  
    1.35 @@ -1627,7 +1621,6 @@
    1.36  	/// \brief Construct a new map.
    1.37  	///
    1.38  	/// Construct a new map for the graph.
    1.39 -	/// \todo call the right parent class constructor
    1.40  	explicit UEdgeMap(const MappableUGraphComponent& graph) 
    1.41            : Parent(graph) {}
    1.42  
    1.43 @@ -1712,7 +1705,6 @@
    1.44  	/// \brief Construct a new map.
    1.45  	///
    1.46  	/// Construct a new map for the graph.
    1.47 -	/// \todo call the right parent class constructor
    1.48  	explicit ANodeMap(const MappableBpUGraphComponent& graph) 
    1.49            : Parent(graph) {}
    1.50  
    1.51 @@ -1750,7 +1742,6 @@
    1.52  	/// \brief Construct a new map.
    1.53  	///
    1.54  	/// Construct a new map for the graph.
    1.55 -	/// \todo call the right parent class constructor
    1.56  	explicit BNodeMap(const MappableBpUGraphComponent& graph) 
    1.57            : Parent(graph) {}
    1.58