- Short names in the examples for VC++.

This commit is contained in:
Sylvain Pion 2001-07-25 11:43:48 +00:00
parent c89dc119a0
commit ca02dbbd21
4 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,6 @@
Version 1.79 (25 July 01)
- Short names in the examples for VC++.
Version 1.78 (23 July 01)
- traits concepts doc modified according to the corresponding modifications
in the code

View File

@ -30,7 +30,10 @@ public :
{}
};
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > K;
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > my_K;
// This is just to shorten some symbol names for VC++
struct K : public my_K {};
typedef K::Point_3 Point;

View File

@ -8,7 +8,10 @@
#include <cassert>
#include <vector>
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > K;
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > my_K;
// This is just to shorten some symbol names for VC++
struct K : public my_K {};
typedef CGAL::Triangulation_vertex_base_3<K> Vb;
typedef CGAL::Triangulation_hierarchy_vertex_base_3<Vb> Vbh;

View File

@ -10,7 +10,10 @@
#include <list>
#include <vector>
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > K;
typedef CGAL::Filtered_kernel<CGAL::Simple_cartesian<double> > my_K;
// This is just to shorten some symbol names for VC++
struct K : public my_K {};
typedef CGAL::Triangulation_3<K> Triangulation;