Rigid Body Dynamics Library
urdfreader.h
Go to the documentation of this file.
1#ifndef RBDL_URDFREADER_H
2#define RBDL_URDFREADER_H
3
4#include <rbdl/rbdl_config.h>
5#include <rbdl/rbdl_math.h>
6
7namespace RigidBodyDynamics {
8
9struct Model;
10
11namespace Addons {
21 RBDL_ADDON_DLLAPI bool URDFReadFromFile (const char* filename, Model* model,
22 bool floating_base, bool verbose = false);
23
33 RBDL_ADDON_DLLAPI bool URDFReadFromString (const char* model_xml_string,
34 Model* model, bool floating_base,
35 bool verbose = false);
36}
37
38}
39
40/* _RBDL_URDFREADER_H */
41#endif
RBDL_ADDON_DLLAPI bool URDFReadFromString(const char *model_xml_string, Model *model, bool floating_base, bool verbose=false)
RBDL_ADDON_DLLAPI bool URDFReadFromFile(const char *filename, Model *model, bool floating_base, bool verbose=false)