Changing #include <bla> to #include "include/bla"

This commit is contained in:
Shai Hirsch 2001-07-10 10:40:28 +00:00
parent c154c56089
commit ce3efc997b
6 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ int main(int argc, char* argv[])
#include <CGAL/Arr_circles_real_traits.h>
#include <CGAL/leda_real.h>
#include <Circles_traits_test_base.h>
#include "include/Circles_traits_test_base.h"
typedef leda_real NT;
typedef CGAL::Arr_circles_real_traits<NT> Traits;

View File

@ -17,7 +17,7 @@ int main(int argc, char* argv[])
#include <CGAL/leda_rational.h>
#include <CGAL/Arr_leda_polyline_traits.h>
#include <Polyline_traits_test.h>
#include "include/Polyline_traits_test.h"
typedef CGAL::Arr_leda_polyline_traits<> Traits;

View File

@ -17,7 +17,7 @@ int main(int argc, char* argv[])
#include <CGAL/Arr_leda_segment_exact_traits.h>
#include <CGAL/leda_rational.h>
#include <Segment_traits_test.h>
#include "include/Segment_traits_test.h"
typedef leda_rational NT;
typedef CGAL::Arr_leda_segment_exact_traits Traits;

View File

@ -1,7 +1,7 @@
#include <CGAL/Cartesian.h>
#include <CGAL/Arr_polyline_traits.h>
#include <Polyline_traits_test.h>
#include "include/Polyline_traits_test.h"
#include <CGAL/Quotient.h>
typedef CGAL::Quotient<int> NT;

View File

@ -16,7 +16,7 @@ int main(int argc, char* argv[])
#else
#include <CGAL/leda_real.h>
#include <Segment_circle_traits_test.h>
#include "include/Segment_circle_traits_test.h"
#include <CGAL/Arr_segment_circle_traits.h>
typedef leda_real NT;

View File

@ -2,7 +2,7 @@
#include <CGAL/Arr_segment_exact_traits.h>
#include <CGAL/Quotient.h>
#include <Segment_traits_test.h>
#include "include/Segment_traits_test.h"
typedef CGAL::Quotient<int> NT;
typedef CGAL::Cartesian<NT> R;