[Lemon-commits] [lemon_svn] alpar: r1151 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:43:32 CET 2006
Author: alpar
Date: Tue Sep 14 19:41:40 2004
New Revision: 1151
Modified:
hugo/trunk/src/hugo/path.h
Log:
Remove obsolete features.
Modified: hugo/trunk/src/hugo/path.h
==============================================================================
--- hugo/trunk/src/hugo/path.h (original)
+++ hugo/trunk/src/hugo/path.h Tue Sep 14 19:41:40 2004
@@ -125,18 +125,6 @@
return i=EdgeIt(*this, n);
}
- /// Checks validity of a node or edge iterator.
- template<typename It>
- static
- bool valid(const It &i) { return i.valid(); }
-
- /// Steps the given node or edge iterator.
- template<typename It>
- static
- It& next(It &e) {
- return ++e;
- }
-
/// \brief Returns node iterator pointing to the head node of the
/// given edge iterator.
NodeIt head(const EdgeIt& e) const {
@@ -160,8 +148,6 @@
*
* Of course it converts to Graph::Edge
*
- * \todo Its interface differs from the standard edge iterator.
- * Yes, it shouldn't.
*/
class EdgeIt {
friend class DirPath;
@@ -209,8 +195,6 @@
*
* Of course it converts to Graph::Node
*
- * \todo Its interface differs from the standard node iterator.
- * Yes, it shouldn't.
*/
class NodeIt {
friend class DirPath;
More information about the Lemon-commits
mailing list