mirror of https://github.com/CGAL/cgal
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
// 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 <CGAL/Triangulation_vertex_base_2.h>
|
|
|
|
namespace CGAL {
|
|
|
|
template < typename GT,
|
|
typename Vb = Triangulation_vertex_base_2<GT> >
|
|
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<TDS2>::Other Vb2;
|
|
typedef Triangulation_vertex_base_with_id_2<GT, Vb2> 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
|