mirror of https://github.com/CGAL/cgal
added copy constructor
This commit is contained in:
parent
2cd47004da
commit
dbd9b9fa07
|
|
@ -29,6 +29,9 @@ public:
|
||||||
|
|
||||||
CGAL_Constrained_triangulation_2(const Gt& gt) : Triangulation(gt) { }
|
CGAL_Constrained_triangulation_2(const Gt& gt) : Triangulation(gt) { }
|
||||||
|
|
||||||
|
CGAL_Constrained_triangulation_2(const CGAL_Constrained_triangulation_2 & ct)
|
||||||
|
: Triangulation(ct) {}
|
||||||
|
|
||||||
CGAL_Constrained_triangulation_2(const Vertex_handle& v, const Gt& gt)
|
CGAL_Constrained_triangulation_2(const Vertex_handle& v, const Gt& gt)
|
||||||
: Triangulation(v,gt) {}
|
: Triangulation(v,gt) {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue