[Lemon-commits] [lemon_svn] klao: r2292 - hugo/trunk/lemon/concept
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:51:34 CET 2006
Author: klao
Date: Fri Nov 4 13:01:40 2005
New Revision: 2292
Modified:
hugo/trunk/lemon/concept/graph.h
Log:
concept/graph.h: graphs defined by using components (_*Graph) need no
documentation
Modified: hugo/trunk/lemon/concept/graph.h
==============================================================================
--- hugo/trunk/lemon/concept/graph.h (original)
+++ hugo/trunk/lemon/concept/graph.h Fri Nov 4 13:01:40 2005
@@ -34,17 +34,14 @@
/**************** The full-featured graph concepts ****************/
- /// \brief Modular static graph class.
- ///
- /// It should be the same as the \c StaticGraph class.
+ // \brief Modular static graph class.
+ //
+ // It should be the same as the \c StaticGraph class.
class _StaticGraph
: virtual public BaseGraphComponent,
public IterableGraphComponent, public MappableGraphComponent {
public:
- ///\e
- ///\todo undocumented
- ///
typedef False UndirTag;
typedef BaseGraphComponent::Node Node;
@@ -59,9 +56,9 @@
};
};
- /// \brief Modular extendable graph class.
- ///
- /// It should be the same as the \c ExtendableGraph class.
+ // \brief Modular extendable graph class.
+ //
+ // It should be the same as the \c ExtendableGraph class.
class _ExtendableGraph
: virtual public BaseGraphComponent, public _StaticGraph,
public ExtendableGraphComponent, public ClearableGraphComponent {
@@ -79,9 +76,9 @@
};
};
- /// \brief Modular erasable graph class.
- ///
- /// It should be the same as the \c ErasableGraph class.
+ // \brief Modular erasable graph class.
+ //
+ // It should be the same as the \c ErasableGraph class.
class _ErasableGraph
: virtual public BaseGraphComponent, public _ExtendableGraph,
public ErasableGraphComponent {
More information about the Lemon-commits
mailing list