src/test/path_test.cc
changeset 959 c80ef5912903
parent 921 818510fa3d99
child 986 e997802b855c
     1.1 --- a/src/test/path_test.cc	Thu Nov 04 18:52:31 2004 +0000
     1.2 +++ b/src/test/path_test.cc	Thu Nov 04 20:24:59 2004 +0000
     1.3 @@ -16,13 +16,13 @@
     1.4  
     1.5  #include <string>
     1.6  #include <iostream>
     1.7 -#include <lemon/skeletons/path.h>
     1.8 +#include <lemon/concept/path.h>
     1.9  #include <lemon/path.h>
    1.10  #include <lemon/list_graph.h>
    1.11  
    1.12  using namespace std;
    1.13  using namespace lemon;
    1.14 -using namespace skeleton;
    1.15 +using namespace lemon::concept;
    1.16  
    1.17  template<class Path> void checkCompilePath(Path &P) 
    1.18  {
    1.19 @@ -86,7 +86,7 @@
    1.20  
    1.21  }
    1.22  
    1.23 -template void checkCompilePath< skeleton::Path<ListGraph> >(skeleton::Path<ListGraph> &);
    1.24 +template void checkCompilePath< concept::Path<ListGraph> >(concept::Path<ListGraph> &);
    1.25  template void checkCompilePath< DirPath<ListGraph> >(DirPath<ListGraph> &);
    1.26  template void checkCompilePath< UndirPath<ListGraph> >(UndirPath<ListGraph> &);
    1.27