diff -r 545926902c13 -r 805c5a2a36dd lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Thu Mar 01 16:50:12 2007 +0000 +++ b/lemon/concepts/graph_components.h Thu Mar 01 17:14:24 2007 +0000 @@ -1262,14 +1262,14 @@ /// \brief Gives back the node alteration notifier. /// /// Gives back the node alteration notifier. - NodeNotifier& getNotifier(Node) const { + NodeNotifier& notifier(Node) const { return NodeNotifier(); } /// \brief Gives back the edge alteration notifier. /// /// Gives back the edge alteration notifier. - EdgeNotifier& getNotifier(Edge) const { + EdgeNotifier& notifier(Edge) const { return EdgeNotifier(); } @@ -1278,10 +1278,10 @@ void constraints() { checkConcept(); typename _Graph::NodeNotifier& nn - = graph.getNotifier(typename _Graph::Node()); + = graph.notifier(typename _Graph::Node()); typename _Graph::EdgeNotifier& en - = graph.getNotifier(typename _Graph::Edge()); + = graph.notifier(typename _Graph::Edge()); ignore_unused_variable_warning(nn); ignore_unused_variable_warning(en); @@ -1316,7 +1316,7 @@ /// \brief Gives back the edge alteration notifier. /// /// Gives back the edge alteration notifier. - UEdgeNotifier& getNotifier(UEdge) const { + UEdgeNotifier& notifier(UEdge) const { return UEdgeNotifier(); } @@ -1325,7 +1325,7 @@ void constraints() { checkConcept, _Graph>(); typename _Graph::UEdgeNotifier& uen - = graph.getNotifier(typename _Graph::UEdge()); + = graph.notifier(typename _Graph::UEdge()); ignore_unused_variable_warning(uen); } @@ -1364,14 +1364,14 @@ /// \brief Gives back the A-node alteration notifier. /// /// Gives back the A-node alteration notifier. - ANodeNotifier& getNotifier(ANode) const { + ANodeNotifier& notifier(ANode) const { return ANodeNotifier(); } /// \brief Gives back the B-node alteration notifier. /// /// Gives back the B-node alteration notifier. - BNodeNotifier& getNotifier(BNode) const { + BNodeNotifier& notifier(BNode) const { return BNodeNotifier(); } @@ -1380,9 +1380,9 @@ void constraints() { checkConcept, _Graph>(); typename _Graph::ANodeNotifier& ann - = graph.getNotifier(typename _Graph::ANode()); + = graph.notifier(typename _Graph::ANode()); typename _Graph::BNodeNotifier& bnn - = graph.getNotifier(typename _Graph::BNode()); + = graph.notifier(typename _Graph::BNode()); ignore_unused_variable_warning(ann); ignore_unused_variable_warning(bnn); }