add missing types

This commit is contained in:
Mariette Yvinec 2002-04-09 11:29:43 +00:00
parent 41162e27fa
commit 503b840d25
3 changed files with 11 additions and 2 deletions

View File

@ -1,6 +1,9 @@
Package triangulation: provides triangulations Delaunay triangulations,
constrained and regular triangulations with tests and examples.
Ver 7.20
- add special_insert_in_edge() for Delaunay_constrained_triangulations
Ver 7.19 (08/04/02)
- fixed copy constructor oc Constraint_hierarchy

View File

@ -8,7 +8,8 @@
#include <CGAL/Constrained_triangulation_plus_2.h>
typedef CGAL::Simple_cartesian<double> K1;
typedef CGAL::Filtered_kernel<K1> K;
typedef CGAL::Filtered_kernel<K1> K2;
struct K : public K2 {};
typedef CGAL::Triangulation_vertex_base_2<K> Vb;
typedef CGAL::Constrained_triangulation_face_base_2<K> Fb;

View File

@ -33,7 +33,12 @@ CGAL_BEGIN_NAMESPACE
template <class T>
struct Pointer
{
typedef T value_type;
typedef void iterator_category;
typedef T value_type;
typedef void difference_type;
typedef T* pointer;
typedef T& reference;
//Pointer(const T* p = NULL) : _pointer((T*)p) {}
//Pointer( T* p = NULL) : _pointer((T*)p) {}