Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/scene_graph/NodeGroup.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeGroup.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/NodeGroup.h b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
index 0558e22bed1..f33687d43a3 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeGroup.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
@@ -42,33 +42,33 @@ class NodeGroup : public Node {
{
}
- /*! Adds a child. Makes a addRef on the iChild reference counter */
+ /** Adds a child. Makes a addRef on the iChild reference counter */
virtual void AddChild(Node *iChild);
- /*! destroys all the underlying nodes
+ /** destroys all the underlying nodes
* Returns the reference counter after having done a release()
*/
virtual int destroy();
- /*! Detaches all the children */
+ /** Detaches all the children */
virtual void DetachChildren();
- /*! Detached the specified child */
+ /** Detached the specified child */
virtual void DetachChild(Node *iChild);
- /*! Retrieve children */
+ /** Retrieve children */
virtual void RetrieveChildren(vector<Node *> &oNodes);
- /*! Renders every children */
+ /** Renders every children */
// virtual void Render(Renderer *iRenderer);
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v);
- /*! Updates the BBox */
+ /** Updates the BBox */
virtual const BBox<Vec3r> &UpdateBBox();
- /*! Returns the number of children */
+ /** Returns the number of children */
virtual int numberOfChildren()
{
return _Children.size();