Fix issues in the documentation of CGAL::Straight_skeleton_2<K>

This commit is contained in:
Mael Rouxel-Labbé 2023-03-01 13:45:52 +01:00
parent 6452ad0e41
commit 9182cf5ddd
1 changed files with 7 additions and 3 deletions

View File

@ -15,16 +15,20 @@ straight skeleton. If an advanced user needs to get access to the
modifying operations, it must call the required methods through the
`Base` class.
\tparam Traits_ must be a model of `Kernel`
\tparam Traits must be a model of `Kernel`
\sa `StraightSkeletonVertex_2`
\sa `StraightSkeletonHalfedge_2`
*/
template< typename Traits_>
template< typename Traits>
class Straight_skeleton_2
: public HalfedgeDS_vector<Traits,Items,Alloc> {
: public CGAL::HalfedgeDS_default<Traits>
{
public:
/// Access to the base (HDS) class
typedef unspecified_type Base;
}; /* end Straight_skeleton_2 */
} /* end namespace CGAL */