From e16b5cc263a508a74e08977ed16e864e01a21aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 22 Dec 2012 01:28:47 +0100 Subject: [PATCH] Doc: worked around Doxygen warnings. It seems that Doxygen parser breaks itself each third Saturday after full moon. --- src/SceneGraph/Drawable.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/SceneGraph/Drawable.h b/src/SceneGraph/Drawable.h index 36ee9fa75..bb20a3960 100644 --- a/src/SceneGraph/Drawable.h +++ b/src/SceneGraph/Drawable.h @@ -114,8 +114,15 @@ template #endif class Drawable: public AbstractGroupedFeature, T> { public: - /** @copydoc AbstractGroupedFeature::AbstractGroupedFeature() */ - inline explicit Drawable(AbstractObject* object, DrawableGroup* group = nullptr): AbstractGroupedFeature, T>(object, group) {} + /** + * @brief Constructor + * @param object %Object this drawable belongs to + * @param drawables Group this drawable belongs to + * + * Adds the feature to the object and also to the group, if specified. + * Otherwise you can use DrawableGroup::add(). + */ + inline explicit Drawable(AbstractObject* object, DrawableGroup* drawables = nullptr): AbstractGroupedFeature, T>(object, drawables) {} /** * @brief Draw the object using given camera