COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
03/01/07 18:14:24 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3215
Message:

getNotifier to notifier renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph_components.h

    r2351 r2384  
    12631263      ///
    12641264      /// Gives back the node alteration notifier.
    1265       NodeNotifier& getNotifier(Node) const {
     1265      NodeNotifier& notifier(Node) const {
    12661266        return NodeNotifier();
    12671267      }
     
    12701270      ///
    12711271      /// Gives back the edge alteration notifier.
    1272       EdgeNotifier& getNotifier(Edge) const {
     1272      EdgeNotifier& notifier(Edge) const {
    12731273        return EdgeNotifier();
    12741274      }
     
    12791279          checkConcept<Base, _Graph>();
    12801280          typename _Graph::NodeNotifier& nn
    1281             = graph.getNotifier(typename _Graph::Node());
     1281            = graph.notifier(typename _Graph::Node());
    12821282
    12831283          typename _Graph::EdgeNotifier& en
    1284             = graph.getNotifier(typename _Graph::Edge());
     1284            = graph.notifier(typename _Graph::Edge());
    12851285         
    12861286          ignore_unused_variable_warning(nn);
     
    13171317      ///
    13181318      /// Gives back the edge alteration notifier.
    1319       UEdgeNotifier& getNotifier(UEdge) const {
     1319      UEdgeNotifier& notifier(UEdge) const {
    13201320        return UEdgeNotifier();
    13211321      }
     
    13261326          checkConcept<AlterableGraphComponent<Base>, _Graph>();
    13271327          typename _Graph::UEdgeNotifier& uen
    1328             = graph.getNotifier(typename _Graph::UEdge());
     1328            = graph.notifier(typename _Graph::UEdge());
    13291329          ignore_unused_variable_warning(uen);
    13301330        }
     
    13651365      ///
    13661366      /// Gives back the A-node alteration notifier.
    1367       ANodeNotifier& getNotifier(ANode) const {
     1367      ANodeNotifier& notifier(ANode) const {
    13681368        return ANodeNotifier();
    13691369      }
     
    13721372      ///
    13731373      /// Gives back the B-node alteration notifier.
    1374       BNodeNotifier& getNotifier(BNode) const {
     1374      BNodeNotifier& notifier(BNode) const {
    13751375        return BNodeNotifier();
    13761376      }
     
    13811381          checkConcept<AlterableUGraphComponent<Base>, _Graph>();
    13821382          typename _Graph::ANodeNotifier& ann
    1383             = graph.getNotifier(typename _Graph::ANode());
     1383            = graph.notifier(typename _Graph::ANode());
    13841384          typename _Graph::BNodeNotifier& bnn
    1385             = graph.getNotifier(typename _Graph::BNode());
     1385            = graph.notifier(typename _Graph::BNode());
    13861386          ignore_unused_variable_warning(ann);
    13871387          ignore_unused_variable_warning(bnn);
Note: See TracChangeset for help on using the changeset viewer.