// ============================================================================ // // Copyright (c) 1999 The CGAL Consortium // // This software and related documentation is part of an INTERNAL release // of the Computational Geometry Algorithms Library (CGAL). It is not // intended for general use. // // ---------------------------------------------------------------------------- // // release : // release_date : // // source : test_programs.fw // file : test_kernelC2.C // revision : 2.1 // revision_date : 05 Aug 1999 // author(s) : Stefan Schirra // // coordinator : MPI, Saarbruecken // ============================================================================ #ifndef CGAL_BASIC_H #include #endif // CGAL_BASIC_H #include #ifndef CGAL_CARTESIAN_H #include #endif // CGAL_CARTESIAN_H #include #include int main() { typedef CGAL::Cartesian Cls; std::cout << "Testing 2d with Cartesian :" << std::endl; _test_2( Cls() ); return 0; }