mirror of https://github.com/CGAL/cgal
Add doc for storage policies
This commit is contained in:
parent
f147e0f0cc
commit
eef2bea7b1
|
|
@ -0,0 +1,10 @@
|
||||||
|
|
||||||
|
namespace CGAL {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\ingroup PkgTriangulationsRef
|
||||||
|
A tag class to indicate that mirror indices are not stored in full cells.
|
||||||
|
*/
|
||||||
|
class TDS_full_cell_mirror_storage_policy
|
||||||
|
{};
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
|
||||||
|
namespace CGAL {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\ingroup PkgTriangulationsRef
|
||||||
|
A tag class to indicate that mirror indices are stored in full cells.
|
||||||
|
\precondition The dimension is not larger than 127.
|
||||||
|
*/
|
||||||
|
class TDS_full_cell_mirror_storage_policy
|
||||||
|
{};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue