# HG changeset patch # User klao # Date 1131105700 0 # Node ID f18e8ca73a8f3f0af6564cf0395d052c375fd861 # Parent 0bb3fb3baffdba564fa7cba8400e244513785914 concept/graph.h: graphs defined by using components (_*Graph) need no documentation diff -r 0bb3fb3baffd -r f18e8ca73a8f lemon/concept/graph.h --- a/lemon/concept/graph.h Fri Nov 04 10:55:13 2005 +0000 +++ b/lemon/concept/graph.h Fri Nov 04 12:01:40 2005 +0000 @@ -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 {