src/test/undir_graph_test.cc
author klao
Mon, 15 Nov 2004 13:10:35 +0000
changeset 993 21d1b4fa1b24
child 1022 567f392d1d2e
permissions -rw-r--r--
error.h brought back to life
     1 // -*- C++ -*-
     2 
     3 #include <lemon/undir_graph_extender.h>
     4 #include <lemon/concept/undir_graph.h>
     5 #include <lemon/list_graph.h>
     6 #include <lemon/smart_graph.h>
     7 #include <lemon/full_graph.h>
     8 
     9 #include "test_tools.h"
    10 
    11 
    12 using namespace lemon;
    13 using namespace lemon::concept;
    14 
    15 
    16 int main() {
    17   typedef UndirGraphExtender<ListGraphBase> UndirListGraphBase;
    18 
    19   function_requires< BaseIterableUndirGraphConcept<UndirListGraphBase> >();
    20 
    21   typedef IterableUndirGraphExtender<
    22     AlterableUndirGraphExtender<UndirListGraphBase> > IterableUndirListGraph;
    23 
    24   function_requires< IterableUndirGraphConcept<IterableUndirListGraph> >();
    25 
    26   return 0;
    27 }