Skip to content
Snippets Groups Projects
Commit e47ba818 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add ManipulationObjectPtr loadManipulationObject(const char* xmlFile)

parent bd095ac3
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,10 @@ namespace VirtualRobot
@return Returns an empty pointer, when file access failed.
*/
static ManipulationObjectPtr loadManipulationObject(const std::string& xmlFile);
static ManipulationObjectPtr loadManipulationObject(const char* xmlFile)
{
return loadManipulationObject(std::string{xmlFile});
}
static ManipulationObjectPtr loadManipulationObject(const std::filesystem::path& xmlFile)
{
return loadManipulationObject(xmlFile.string());
......
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