Draft: add modules of draftviewproviders to the proper Doxygen group

This includes `view_array`, `view_base`, `view_bezcurve`,
`view_bspline`, `view_circulararray`, `view_clone`, `view_dimension`,
`view_draft_annotation`, `view_draftlink`, `view_facebinder`,
`view_fillet`, `view_label`, `view_orthoarray`, `view_point`,
`view_polararray`, `view_rectangle`, `view_text`, `view_wire`,
`view_wpproxy`.

These are added to the `draftviewproviders` Doxygen group
so that the functions and classes contained in each module
are listed appropriately in the automatically generated
documentation.
This commit is contained in:
vocx-fc
2020-07-01 15:04:46 -05:00
committed by Yorik van Havre
parent 6a3de864e7
commit 08069a89eb
19 changed files with 170 additions and 93 deletions

View File

@@ -20,11 +20,13 @@
# * USA *
# * *
# ***************************************************************************
"""This module provides the view provider code for the Draft Link object.
"""
"""Provides the base viewprovider code for the Link objects."""
## @package view_draftlink
# \ingroup DRAFT
# \brief This module provides the view provider code for the Draft Link object.
# \ingroup draftviewproviders
# \brief Provides the base viewprovider code for the Link objects.
## \addtogroup draftviewproviders
# @{
class ViewProviderDraftLink:
@@ -66,6 +68,9 @@ class ViewProviderDraftLink:
return [obj.Base]
else:
return obj.ElementList
# Alias for compatibility with old versions of v0.19
_ViewProviderDraftLink = ViewProviderDraftLink
## @}