1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
// Copyright (c) 2003 INRIA Sophia-Antipolis (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
// 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: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/next/Triangulation_2/include/CGAL/Triangulation_face_base_with_info_2.h $
// $Id: Triangulation_face_base_with_info_2.h 67117 2012-01-13 18:14:48Z lrineau $
//
//
// Author(s) : Mariette Yvinec,Sylvain Pion
// face of a triangulation of any dimension <=3
#ifndef CGAL_TRIANGULATION_FACE_BASE_WITH_INFO_2_H
#define CGAL_TRIANGULATION_FACE_BASE_WITH_INFO_2_H
#include <CGAL/Triangulation_face_base_2.h>
namespace CGAL {
template < typename Info_, typename GT,
typename Fb = Triangulation_face_base_2<GT> >
class Triangulation_face_base_with_info_2
: public Fb
{
Info_ _info;
public:
typedef typename Fb::Vertex_handle Vertex_handle;
typedef typename Fb::Face_handle Face_handle;
typedef Info_ Info;
template < typename TDS2 >
struct Rebind_TDS {
typedef typename Fb::template Rebind_TDS<TDS2>::Other Fb2;
typedef Triangulation_face_base_with_info_2<Info, GT, Fb2> Other;
};
Triangulation_face_base_with_info_2()
: Fb() {}
Triangulation_face_base_with_info_2(Vertex_handle v0,
Vertex_handle v1,
Vertex_handle v2)
: Fb(v0, v1, v2) {}
Triangulation_face_base_with_info_2(Vertex_handle v0,
Vertex_handle v1,
Vertex_handle v2,
Face_handle n0,
Face_handle n1,
Face_handle n2 )
: Fb(v0, v1, v2, n0, n1, n2) {}
const Info& info() const { return _info; }
Info& info() { return _info; }
};
} //namespace CGAL
#endif // CGAL_TRIANGULATION_FACE_BASE_WITH_INFO_2_H
|