src/lemon/list_graph.h
changeset 1035 f2a3426e64e6
parent 1034 be6ee857b72d
child 1039 bd01c5a3f989
     1.1 --- a/src/lemon/list_graph.h	Thu Dec 09 15:30:12 2004 +0000
     1.2 +++ b/src/lemon/list_graph.h	Thu Dec 09 17:02:53 2004 +0000
     1.3 @@ -398,6 +398,7 @@
     1.4      ///\warning Edge and node deletions cannot be restored.
     1.5      ///\warning SnapShots cannot be nested.
     1.6      ///\ingroup graphs
     1.7 +    ///\todo \c SnapShot or \c Snapshot?
     1.8      class SnapShot : protected AlterationObserverRegistry<Node>::ObserverBase,
     1.9  		     protected AlterationObserverRegistry<Edge>::ObserverBase
    1.10      {
    1.11 @@ -512,6 +513,17 @@
    1.12      AlterableUndirGraphExtender<
    1.13      UndirGraphExtender<ListGraphBase> > > > > > > ErasableUndirListGraphBase;
    1.14  
    1.15 +  ///An undirected list graph class.
    1.16 +
    1.17 +  ///This is a simple and fast erasable undirected graph implementation.
    1.18 +  ///
    1.19 +  ///It conforms to the
    1.20 +  ///\ref concept::UndirGraph "UndirGraph" concept.
    1.21 +  ///
    1.22 +  ///\sa concept::UndirGraph.
    1.23 +  ///
    1.24 +  ///\todo SnapShot hasn't been implemented yet.
    1.25 +  ///
    1.26    class UndirListGraph : public ErasableUndirListGraphBase {
    1.27    };
    1.28