It wouldn't even have to be this long.  It could be:

/* Returns the child node at position childIndex.
   @param childIndex Index of child in range [0, getNChildren()-1]
   @note Index boundaries are not checked.
*/

-Allen

Antonio Bleile wrote:

>So, a proper doc could look like this (roughly):
>
>
>/*!
>       Returns the child node at index position childIndex. Index
>       boundaries are not checked, using an invalid index might
>       lead to a segfault.
>
>       \param childIndex child index in the range of [0, getNChildren()-1]
>       \author Dirk Reiners
>       \return NodePtr
>
>       \sa addChild()
>*/
>
>inline NodePtr Node::getChild(UInt32 childIndex) {
>     OSG_ASSERT((childIndex < _mfChildren.size()));
>    return _mfChildren[childIndex];
>}
>
>
>Cheers,
>
>  Toni
>
>
>----------------------------------------------------------------
>This message was sent using IMP, the Internet Messaging Program.
>
>-------------------------------------------------------------------------
>Using Tomcat but need to do more? Need to support web services, security?
>Get stuff done quickly with pre-integrated technology to make your job easier
>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>_______________________________________________
>Opensg-users mailing list
>[email protected]
>https://lists.sourceforge.net/lists/listinfo/opensg-users
>
>  
>


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to