Skip to content

Commit

Permalink
fix docstring in MGI API (moveit#2626)
Browse files Browse the repository at this point in the history
  • Loading branch information
v4hn authored and tylerjw committed May 3, 2021
1 parent e7821f4 commit 31cdf6c
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,15 @@ class MoveGroupInterface
void setPlannerParams(const std::string& planner_id, const std::string& group,
const std::map<std::string, std::string>& params, bool bReplace = false);

/** \brief Get the default planner for a given group (or global default) */
std::string getDefaultPlanningPipelineId() const;

/** \brief Specify a planning pipeline to be used for further planning */
void setPlanningPipelineId(const std::string& pipeline_id);

/** \brief Get the current planning_pipeline_id */
const std::string& getPlanningPipelineId() const;

/** \brief Get the default planner of the current planning pipeline for the given group (or the pipeline's default) */
std::string getDefaultPlannerId(const std::string& group = "") const;

/** \brief Specify a planner to be used for further planning */
Expand Down

0 comments on commit 31cdf6c

Please sign in to comment.