From b1be44845342df615619b5c68e841cf24cddd647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 4 Feb 2014 12:29:25 +0100 Subject: [PATCH] doc: hint that these function actually take some parameters. This looked like valid code, which is not. --- doc/scenegraph.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/scenegraph.dox b/doc/scenegraph.dox index 877d48704..85ec71c42 100644 --- a/doc/scenegraph.dox +++ b/doc/scenegraph.dox @@ -165,10 +165,10 @@ class Bomb: public Object3D, SceneGraph::Drawable3D, SceneGraph::Animable3D { protected: // drawing implementation for Drawable feature - void draw() override; + void draw(...) override; // animation step for Animable feature - void animationStep() override; + void animationStep(...) override; }; @endcode