lemon/concepts/graph_components.h
changeset 2384 805c5a2a36dd
parent 2351 8e3a00d4678e
child 2391 14a343be7a5a
     1.1 --- a/lemon/concepts/graph_components.h	Thu Mar 01 16:50:12 2007 +0000
     1.2 +++ b/lemon/concepts/graph_components.h	Thu Mar 01 17:14:24 2007 +0000
     1.3 @@ -1262,14 +1262,14 @@
     1.4        /// \brief Gives back the node alteration notifier.
     1.5        ///
     1.6        /// Gives back the node alteration notifier.
     1.7 -      NodeNotifier& getNotifier(Node) const {
     1.8 +      NodeNotifier& notifier(Node) const {
     1.9  	return NodeNotifier();
    1.10        }
    1.11        
    1.12        /// \brief Gives back the edge alteration notifier.
    1.13        ///
    1.14        /// Gives back the edge alteration notifier.
    1.15 -      EdgeNotifier& getNotifier(Edge) const {
    1.16 +      EdgeNotifier& notifier(Edge) const {
    1.17  	return EdgeNotifier();
    1.18        }
    1.19  
    1.20 @@ -1278,10 +1278,10 @@
    1.21  	void constraints() {
    1.22  	  checkConcept<Base, _Graph>();
    1.23            typename _Graph::NodeNotifier& nn 
    1.24 -            = graph.getNotifier(typename _Graph::Node());
    1.25 +            = graph.notifier(typename _Graph::Node());
    1.26  
    1.27            typename _Graph::EdgeNotifier& en 
    1.28 -            = graph.getNotifier(typename _Graph::Edge());
    1.29 +            = graph.notifier(typename _Graph::Edge());
    1.30            
    1.31            ignore_unused_variable_warning(nn);
    1.32            ignore_unused_variable_warning(en);
    1.33 @@ -1316,7 +1316,7 @@
    1.34        /// \brief Gives back the edge alteration notifier.
    1.35        ///
    1.36        /// Gives back the edge alteration notifier.
    1.37 -      UEdgeNotifier& getNotifier(UEdge) const {
    1.38 +      UEdgeNotifier& notifier(UEdge) const {
    1.39  	return UEdgeNotifier();
    1.40        }
    1.41  
    1.42 @@ -1325,7 +1325,7 @@
    1.43  	void constraints() {
    1.44  	  checkConcept<AlterableGraphComponent<Base>, _Graph>();
    1.45            typename _Graph::UEdgeNotifier& uen 
    1.46 -            = graph.getNotifier(typename _Graph::UEdge());
    1.47 +            = graph.notifier(typename _Graph::UEdge());
    1.48            ignore_unused_variable_warning(uen);
    1.49  	}
    1.50  	
    1.51 @@ -1364,14 +1364,14 @@
    1.52        /// \brief Gives back the A-node alteration notifier.
    1.53        ///
    1.54        /// Gives back the A-node alteration notifier.
    1.55 -      ANodeNotifier& getNotifier(ANode) const {
    1.56 +      ANodeNotifier& notifier(ANode) const {
    1.57  	return ANodeNotifier();
    1.58        }
    1.59  
    1.60        /// \brief Gives back the B-node alteration notifier.
    1.61        ///
    1.62        /// Gives back the B-node alteration notifier.
    1.63 -      BNodeNotifier& getNotifier(BNode) const {
    1.64 +      BNodeNotifier& notifier(BNode) const {
    1.65  	return BNodeNotifier();
    1.66        }
    1.67  
    1.68 @@ -1380,9 +1380,9 @@
    1.69  	void constraints() {
    1.70            checkConcept<AlterableUGraphComponent<Base>, _Graph>();
    1.71            typename _Graph::ANodeNotifier& ann 
    1.72 -            = graph.getNotifier(typename _Graph::ANode());
    1.73 +            = graph.notifier(typename _Graph::ANode());
    1.74            typename _Graph::BNodeNotifier& bnn 
    1.75 -            = graph.getNotifier(typename _Graph::BNode());
    1.76 +            = graph.notifier(typename _Graph::BNode());
    1.77            ignore_unused_variable_warning(ann);
    1.78            ignore_unused_variable_warning(bnn);
    1.79  	}