// Copyright (c) 2007 GeometryFactory (France). All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Andreas Fabri, Fernando Cacciola #ifndef CGAL_TRIANGULATION_VERTEX_BASE_WITH_ID_2_H #define CGAL_TRIANGULATION_VERTEX_BASE_WITH_ID_2_H #include namespace CGAL { template < typename GT, typename Vb = Triangulation_vertex_base_2 > class Triangulation_vertex_base_with_id_2 : public Vb { int _id; public: typedef typename Vb::Face_handle Face_handle; typedef typename Vb::Point Point; template < typename TDS2 > struct Rebind_TDS { typedef typename Vb::template Rebind_TDS::Other Vb2; typedef Triangulation_vertex_base_with_id_2 Other; }; Triangulation_vertex_base_with_id_2() : Vb() {} Triangulation_vertex_base_with_id_2(const Point & p) : Vb(p) {} Triangulation_vertex_base_with_id_2(const Point & p, Face_handle c) : Vb(p, c) {} Triangulation_vertex_base_with_id_2(Face_handle c) : Vb(c) {} int id() const { return _id; } int& id() { return _id; } }; } //namespace CGAL #endif // CGAL_TRIANGULATION_VERTEX_BASE_WITH_ID_2_H