Skip to content
Snippets Groups Projects
Commit 70004c55 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Rename param and add comment

parent fae58a35
No related branches found
No related tags found
No related merge requests found
......@@ -63,10 +63,10 @@ void Document::setModelName(const std::string& name)
root->setAttribute("model", name);
}
Include Document::addInclude(const std::string& filename)
Include Document::addInclude(const std::string& relativePath)
{
Include include = root->addChild<Include>();
include.file = filename;
include.file = relativePath;
return include;
}
......
......@@ -66,7 +66,12 @@ namespace mjcf
SensorSection sensor() { return section<SensorSection>(); }
KeyframeSection keyframe() { return section<KeyframeSection>(); }
Include addInclude(const std::string& filename);
/**
* @brief Add an include element including the file specified by `relativePath`.
* The given path must be relative to the directory where the model will be stored.
* @see http://www.mujoco.org/book/XMLreference.html#include
*/
Include addInclude(const std::string& relativePath);
/**
* @brief Set the class attribute of all new applicable elements
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment