// Copyright (c) 2013 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL$ // $Id$ // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Efi Fogel #ifndef CGAL_POLYGON_NOP_DECOMPOSITION_2_H #define CGAL_POLYGON_NOP_DECOMPOSITION_2_H #include #include namespace CGAL { /*! \class * Nop decomposition strategy. * Used for polygons that are already convex. */ template > class Polygon_nop_decomposition_2 { public: typedef Kernel_ Kernel; typedef Container_ Container; typedef CGAL::Polygon_2 Polygon_2; template OutputIterator_ operator()(const Polygon_2& pgn, OutputIterator_ oi) const { *oi++ = pgn; return oi; } }; } //namespace CGAL #endif