/**
\mainpage
\htmlinclude manifest.html
URDF is a class containing robot model data structure.
Every Robot Description File can be described as a list of Links and Joints.
The connection between links(nodes) and joints(edges) should define a tree (i.e. 1 parent link, 0+ children links).
Below is an example Robot Description Describing a Parent Link 'P', a Child Link 'C', and a Joint 'J'
\li NEW URDF XML that corresponds to the current URDF data structure:
@verbatim
@endverbatim
\section codeapi Code API
The URDF parser API contains the following methods:
\li Parse from XML: urdf::Model::initXml
\li Parse from File: urdf::Model::initFile
\li Parse from String: urdf::Model::initString
\li Get Root Link: urdf::Model::getRoot
\li Get Link by name urdf::Model::getLink
\li Get all Link's urdf::Model::getLinks
\li Get Joint by name urdf::Model::getJoint
\li etc.
*/