Skip to content

Commit

Permalink
Added new profile dictionaries to planner request
Browse files Browse the repository at this point in the history
  • Loading branch information
marip8 committed Jan 16, 2023
1 parent cb855ad commit a97babc
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
#include <tesseract_command_language/composite_instruction.h>
#include <tesseract_command_language/profile_dictionary.h>

#include <tesseract_motion_planners/core/profile_dictionary.h>

namespace tesseract_planning
{
struct PlannerRequest
Expand All @@ -52,6 +54,10 @@ struct PlannerRequest
/** @brief The profile dictionary */
ProfileDictionary::ConstPtr profiles{ std::make_shared<ProfileDictionary>() };

tmp::WaypointProfileDictionary::ConstPtr waypoint_profiles{ std::make_shared<tmp::WaypointProfileDictionary>() };
tmp::CompositeProfileDictionary::ConstPtr composite_profiles{ std::make_shared<tmp::CompositeProfileDictionary>() };
tmp::PlannerProfileDictionary::ConstPtr planner_profiles{ std::make_shared<tmp::PlannerProfileDictionary>() };

/**
* @brief The program instruction
* This must contain a minimum of two move instruction the first move instruction is the start state
Expand Down

0 comments on commit a97babc

Please sign in to comment.