changed name

This commit is contained in:
Efi Fogel 2004-03-11 17:15:34 +00:00
parent 7c42b7ac5d
commit 4ad03918c7
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include <CGAL/Cartesian.h>
#include <CGAL/Quotient.h>
#include <CGAL/MP_Float.h>
#include <CGAL/Arr_segment_cached_traits_2.h>
#include <CGAL/Arr_polyline_traits_2.h>
#include "include/Polyline_traits_test.h"
typedef CGAL::Quotient<CGAL::MP_Float> NT;
typedef CGAL::Cartesian<NT> Kernel;
typedef CGAL::Arr_segment_cached_traits_2<Kernel> Seg_traits;
typedef CGAL::Arr_polyline_traits_2<Seg_traits> Traits;
int main( int argc, char** argv )
{
Polyline_traits_test< Traits, NT > test_obj( argc, argv );
if (test_obj.start())
return (0); // SUCCESS
else
return (1); // FAILURE
}