File tree 3 files changed +5
-6
lines changed
planning/behavior_velocity_template_module/src
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ namespace behavior_velocity_planner
39
39
*
40
40
* @param node A reference to the ROS node.
41
41
*/
42
- class TemplateModuleManager : public SceneModuleManagerInterface
42
+ class TemplateModuleManager : public ::behavior_velocity_planner:: SceneModuleManagerInterface
43
43
{
44
44
public:
45
45
explicit TemplateModuleManager (rclcpp::Node & node);
@@ -86,7 +86,7 @@ class TemplateModuleManager : public SceneModuleManagerInterface
86
86
* The TemplateModulePlugin class is used to integrate the TemplateModuleManager into the Behavior
87
87
* Velocity Planner.
88
88
*/
89
- class TemplateModulePlugin : public PluginWrapper <TemplateModuleManager>
89
+ class TemplateModulePlugin : public ::behavior_velocity_planner:: PluginWrapper<TemplateModuleManager>
90
90
{
91
91
};
92
92
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ namespace autoware
26
26
namespace behavior_velocity_planner
27
27
{
28
28
29
- using ::behavior_path_planner::StopReason;
30
-
31
29
TemplateModule::TemplateModule (
32
30
const int64_t module_id, const rclcpp::Logger & logger, const rclcpp::Clock::SharedPtr clock)
33
31
: SceneModuleInterface(module_id, logger, clock)
Original file line number Diff line number Diff line change @@ -26,9 +26,10 @@ namespace autoware
26
26
namespace behavior_velocity_planner
27
27
{
28
28
using autoware_auto_planning_msgs::msg::PathWithLaneId;
29
- using ::behavior_path_planner::StopReason;
29
+ using ::behavior_velocity_planner::StopReason;
30
+ using ::behavior_velocity_planner::SceneModuleInterface;
30
31
31
- class TemplateModule : public SceneModuleInterface
32
+ class TemplateModule : public ::behavior_velocity_planner:: SceneModuleInterface
32
33
{
33
34
public:
34
35
TemplateModule (
You can’t perform that action at this time.
0 commit comments