lemon/concepts/graph.h
changeset 1261 97f1760dcd13
parent 1217 7bf489cf624e
parent 1259 8b2d4e5d96e4
child 1270 dceba191c00d
equal deleted inserted replaced
17:cb3d67099072 20:141b677a50d1
   394         ArcIt(Invalid) { }
   394         ArcIt(Invalid) { }
   395         /// Sets the iterator to the first arc.
   395         /// Sets the iterator to the first arc.
   396 
   396 
   397         /// Sets the iterator to the first arc of the given graph.
   397         /// Sets the iterator to the first arc of the given graph.
   398         ///
   398         ///
   399         explicit ArcIt(const Graph &g) { ignore_unused_variable_warning(g); }
   399         explicit ArcIt(const Graph &g) { ::lemon::ignore_unused_variable_warning(g); }
   400         /// Sets the iterator to the given arc.
   400         /// Sets the iterator to the given arc.
   401 
   401 
   402         /// Sets the iterator to the given arc of the given graph.
   402         /// Sets the iterator to the given arc of the given graph.
   403         ///
   403         ///
   404         ArcIt(const Graph&, const Arc&) { }
   404         ArcIt(const Graph&, const Arc&) { }
   440         /// Sets the iterator to the first outgoing arc.
   440         /// Sets the iterator to the first outgoing arc.
   441 
   441 
   442         /// Sets the iterator to the first outgoing arc of the given node.
   442         /// Sets the iterator to the first outgoing arc of the given node.
   443         ///
   443         ///
   444         OutArcIt(const Graph& n, const Node& g) {
   444         OutArcIt(const Graph& n, const Node& g) {
   445           ignore_unused_variable_warning(n);
   445           ::lemon::ignore_unused_variable_warning(n);
   446           ignore_unused_variable_warning(g);
   446           ::lemon::ignore_unused_variable_warning(g);
   447         }
   447         }
   448         /// Sets the iterator to the given arc.
   448         /// Sets the iterator to the given arc.
   449 
   449 
   450         /// Sets the iterator to the given arc of the given graph.
   450         /// Sets the iterator to the given arc of the given graph.
   451         ///
   451         ///
   488         /// Sets the iterator to the first incoming arc.
   488         /// Sets the iterator to the first incoming arc.
   489 
   489 
   490         /// Sets the iterator to the first incoming arc of the given node.
   490         /// Sets the iterator to the first incoming arc of the given node.
   491         ///
   491         ///
   492         InArcIt(const Graph& g, const Node& n) {
   492         InArcIt(const Graph& g, const Node& n) {
   493           ignore_unused_variable_warning(n);
   493           ::lemon::ignore_unused_variable_warning(n);
   494           ignore_unused_variable_warning(g);
   494           ::lemon::ignore_unused_variable_warning(g);
   495         }
   495         }
   496         /// Sets the iterator to the given arc.
   496         /// Sets the iterator to the given arc.
   497 
   497 
   498         /// Sets the iterator to the given arc of the given graph.
   498         /// Sets the iterator to the given arc of the given graph.
   499         ///
   499         ///