// ============================================================================ // // 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 : // file : test_predicate_classes_2C.C // revision : 2.0.5 // revision_date : 24 Mar 1999 // author(s) : Stefan Schirra // // coordinator : MPI, Saarbruecken // ============================================================================ #include #include #include #include #include #include #include int main() { typedef CGAL::Cartesian C_Cls; typedef CGAL::Point_2 C_Point; typedef CGAL::Line_2 C_Line; cout << "Testing 2d with Cartesian > :" << endl; _test_fctobj_point_line_2( C_Point(), C_Line()); return 0; }