mirror of https://github.com/CGAL/cgal
- Short names in the examples for VC++.
This commit is contained in:
parent
c89dc119a0
commit
ca02dbbd21
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue