src/test/graph_wrapper_test.cc
changeset 963 5a7556e9e340
parent 946 c94ef40a22ce
child 970 09f9abe22df2
equal deleted inserted replaced
8:20e7d6734391 9:12ebc46b750f
    16 
    16 
    17 #include<iostream>
    17 #include<iostream>
    18 #include<lemon/concept_check.h>
    18 #include<lemon/concept_check.h>
    19 
    19 
    20 #include<lemon/smart_graph.h>
    20 #include<lemon/smart_graph.h>
    21 #include<lemon/skeletons/graph.h>
    21 #include<lemon/concept/graph.h>
    22 
    22 
    23 #include<lemon/list_graph.h>
    23 #include<lemon/list_graph.h>
    24 #include<lemon/full_graph.h>
    24 #include<lemon/full_graph.h>
    25 #include<lemon/graph_wrapper.h>
    25 #include<lemon/graph_wrapper.h>
    26 
    26 
    33 
    33 
    34 \todo More extensive tests are needed 
    34 \todo More extensive tests are needed 
    35 */
    35 */
    36 
    36 
    37 using namespace lemon;
    37 using namespace lemon;
    38 using namespace lemon::skeleton;
    38 using namespace lemon::concept;
    39 
    39 
    40 
    40 
    41 typedef SmartGraph Graph;
    41 typedef SmartGraph Graph;
    42 
    42 
    43 
    43