// Copyright (c) 2005 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Boolean_set_operations_2/include/CGAL/Gps_circle_segment_traits_2.h $ // $Id: Gps_circle_segment_traits_2.h e2a77e5 2020-05-24T11:18:01+02:00 Marc Glisse // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Baruch Zukerman #ifndef CGAL_GPS_CIRCLE_SEGMENT_TRAITS_2_H #define CGAL_GPS_CIRCLE_SEGMENT_TRAITS_2_H #include #include #include #include namespace CGAL { template class Gps_circle_segment_traits_2 : public Gps_traits_2 > { public: Gps_circle_segment_traits_2(bool use_cache = false) : Gps_traits_2 >() { this->m_use_cache = use_cache; } }; } //namespace CGAL #include #endif