1.1 --- a/lemon/concept/graph.h Fri Nov 04 10:55:13 2005 +0000
1.2 +++ b/lemon/concept/graph.h Fri Nov 04 12:01:40 2005 +0000
1.3 @@ -34,17 +34,14 @@
1.4 /**************** The full-featured graph concepts ****************/
1.5
1.6
1.7 - /// \brief Modular static graph class.
1.8 - ///
1.9 - /// It should be the same as the \c StaticGraph class.
1.10 + // \brief Modular static graph class.
1.11 + //
1.12 + // It should be the same as the \c StaticGraph class.
1.13 class _StaticGraph
1.14 : virtual public BaseGraphComponent,
1.15 public IterableGraphComponent, public MappableGraphComponent {
1.16 public:
1.17 - ///\e
1.18
1.19 - ///\todo undocumented
1.20 - ///
1.21 typedef False UndirTag;
1.22
1.23 typedef BaseGraphComponent::Node Node;
1.24 @@ -59,9 +56,9 @@
1.25 };
1.26 };
1.27
1.28 - /// \brief Modular extendable graph class.
1.29 - ///
1.30 - /// It should be the same as the \c ExtendableGraph class.
1.31 + // \brief Modular extendable graph class.
1.32 + //
1.33 + // It should be the same as the \c ExtendableGraph class.
1.34 class _ExtendableGraph
1.35 : virtual public BaseGraphComponent, public _StaticGraph,
1.36 public ExtendableGraphComponent, public ClearableGraphComponent {
1.37 @@ -79,9 +76,9 @@
1.38 };
1.39 };
1.40
1.41 - /// \brief Modular erasable graph class.
1.42 - ///
1.43 - /// It should be the same as the \c ErasableGraph class.
1.44 + // \brief Modular erasable graph class.
1.45 + //
1.46 + // It should be the same as the \c ErasableGraph class.
1.47 class _ErasableGraph
1.48 : virtual public BaseGraphComponent, public _ExtendableGraph,
1.49 public ErasableGraphComponent {