src/lemon/smart_graph.h
changeset 1034 be6ee857b72d
parent 1011 5bd6c7671c9e
child 1035 f2a3426e64e6
     1.1 --- a/src/lemon/smart_graph.h	Thu Dec 09 10:45:32 2004 +0000
     1.2 +++ b/src/lemon/smart_graph.h	Thu Dec 09 15:30:12 2004 +0000
     1.3 @@ -31,6 +31,8 @@
     1.4  #include <lemon/alteration_observer_registry.h>
     1.5  #include <lemon/default_map.h>
     1.6  
     1.7 +#include <lemon/undir_graph_extender.h>
     1.8 +
     1.9  #include <lemon/utility.h>
    1.10  
    1.11  namespace lemon {
    1.12 @@ -345,6 +347,20 @@
    1.13        }
    1.14      };
    1.15    };
    1.16 +
    1.17 +
    1.18 +  /**************** Undirected List Graph ****************/
    1.19 +
    1.20 +  typedef ClearableUndirGraphExtender<
    1.21 +    ExtendableUndirGraphExtender<
    1.22 +    MappableUndirGraphExtender<
    1.23 +    IterableUndirGraphExtender<
    1.24 +    AlterableUndirGraphExtender<
    1.25 +    UndirGraphExtender<SmartGraphBase> > > > > > UndirSmartGraphBase;
    1.26 +
    1.27 +  class UndirSmartGraph : public UndirSmartGraphBase {
    1.28 +  };
    1.29 +
    1.30    
    1.31    /// @}  
    1.32  } //namespace lemon