// ============================================================================ // // Copyright (c) 2001 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 : // // file : test_io.C // revision : $Revision$ // revision_date : $Date$ // author(s) : Sylvain Pion // // coordinator : MPI, Saarbruecken // ============================================================================ #include #include #include #include #include "../Kernel/include/CGAL/_test_io.h" int main() { typedef CGAL::Cartesian Cls; std::cout << "Testing IO with Cartesian :" << std::endl; _test_io( Cls() ); return 0; }