// Copyright (c) 1998, 2001, 2003 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Triangulation_3/include/CGAL/Triangulation_hierarchy_vertex_base_3.h $ // $Id: Triangulation_hierarchy_vertex_base_3.h 254d60f 2019-10-19T15:23:19+02:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Olivier Devillers // Sylvain Pion #ifndef CGAL_TRIANGULATION_HIERARCHY_VERTEX_BASE_3_H #define CGAL_TRIANGULATION_HIERARCHY_VERTEX_BASE_3_H #include #include namespace CGAL { template < class Vbb > class Triangulation_hierarchy_vertex_base_3 : public Vbb { typedef Vbb Base; typedef typename Base::Triangulation_data_structure Tds; public: typedef typename Tds::Vertex_handle Vertex_handle; typedef typename Tds::Cell_handle Cell_handle; typedef typename Base::Point Point; template < typename TDS2 > struct Rebind_TDS { typedef typename Vbb::template Rebind_TDS::Other Vb2; typedef Triangulation_hierarchy_vertex_base_3 Other; }; Triangulation_hierarchy_vertex_base_3() : Base(), _up(), _down() {} Triangulation_hierarchy_vertex_base_3(const Point & p, Cell_handle f) : Base(p,f), _up(), _down() {} Triangulation_hierarchy_vertex_base_3(const Point & p) : Base(p), _up(), _down() {} Vertex_handle up() const { return _up; } Vertex_handle down() const { return _down; } void set_up(Vertex_handle u) { _up=u; } void set_down(Vertex_handle d) { _down=d; } private: Vertex_handle _up; // same vertex one level above Vertex_handle _down; // same vertex one level below }; } //namespace CGAL #endif // CGAL_TRIANGULATION_HIERARCHY_VERTEX_BASE_3_H