mirror of https://github.com/CGAL/cgal
Proper documentation for Rebind_*
This commit is contained in:
parent
1888469bda
commit
b153ceb50c
|
|
@ -74,9 +74,8 @@ This nested template class has to define a type `Other` which is the
|
||||||
This type `Other` will be the actual base
|
This type `Other` will be the actual base
|
||||||
of the class `CGAL::Triangulation_data_structure_2::Face`.
|
of the class `CGAL::Triangulation_data_structure_2::Face`.
|
||||||
*/
|
*/
|
||||||
typedef Hidden_type
|
|
||||||
template <typename TDS2>
|
template <typename TDS2>
|
||||||
struct Rebind_TDS;
|
struct Rebind_TDS {};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,9 +72,8 @@ This nested template class has to define a type `Other` which is the
|
||||||
This type `Other` will be the actual base
|
This type `Other` will be the actual base
|
||||||
of the class `CGAL::Triangulation_data_structure_2::Vertex`.
|
of the class `CGAL::Triangulation_data_structure_2::Vertex`.
|
||||||
*/
|
*/
|
||||||
typedef Hidden_type
|
|
||||||
template <typename TDS2>
|
template <typename TDS2>
|
||||||
struct Rebind_TDS;
|
struct Rebind_TDS {};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -395,7 +395,8 @@ data structure that only changes the vertex type. It has to define a type
|
||||||
`Other` which is a <I>rebound</I> triangulation data structure, that is, the
|
`Other` which is a <I>rebound</I> triangulation data structure, that is, the
|
||||||
one whose `TriangulationDSVertexBase_2` will be `Vb2`.
|
one whose `TriangulationDSVertexBase_2` will be `Vb2`.
|
||||||
*/
|
*/
|
||||||
typedef Hidden_type template <typename Vb2> struct Rebind_vertex;
|
template <typename Vb2>
|
||||||
|
struct Rebind_vertex {};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
This nested template class allows to get the type of a triangulation
|
This nested template class allows to get the type of a triangulation
|
||||||
|
|
@ -403,7 +404,8 @@ data structure that only changes the face type. It has to define a type
|
||||||
`Other` which is a <I>rebound</I> triangulation data structure, that is, the
|
`Other` which is a <I>rebound</I> triangulation data structure, that is, the
|
||||||
one whose `TriangulationDSFaceBase_2` will be `Fb2`.
|
one whose `TriangulationDSFaceBase_2` will be `Fb2`.
|
||||||
*/
|
*/
|
||||||
typedef Hidden_type template <typename Fb2> struct Rebind_face;
|
template <typename Fb2>
|
||||||
|
struct Rebind_face {};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
The edge type.
|
The edge type.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue