// ====================================================================== // // Copyright (c) 1997 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 : $CGAL_Revision: CGAL-2.3-I-44 $ // release_date : $CGAL_Date: 2001/03/09 $ // // file : include/CGAL/sweep_to_construct_planar_map.h // package : arr (1.87) // maintainer : Eyal Flato // source : // revision : // revision_date : // author(s) : Eti Ezra // // // coordinator : Tel-Aviv University (Dan Halperin ) // // Chapter : // ====================================================================== #ifndef SWEEP_TO_CONSTRUCT_PLANAR_MAP_H #define SWEEP_TO_CONSTRUCT_PLANRA_MAP_H #ifndef CGAL_BASIC_H #include #endif #ifndef CGAL_SWEEP_CURVES_TO_PLANAR_MAP_H #include #endif CGAL_BEGIN_NAMESPACE template void sweep_to_construct_planar_map(Curve_iterator curves_begin, Curve_iterator curves_end, PM &result) { Sweep_curves_to_planar_map sweep_line; sweep_line.sweep_curves_to_planar_map(curves_begin, curves_end, result); } /*template void sweep_curves_to_pm(Curve_iterator curves_begin, Curve_iterator curves_end, PM &result, Notifier* notifier) { Sweep_line sweep_line; sweep_line.sweep_curves_to_pm(curves_begin, curves_end, result, notifier); }*/ CGAL_END_NAMESPACE #endif