Skip to content

Commit

Permalink
build(autoware_behavior_velocity_template_module): fix namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed Apr 9, 2024
1 parent 315df87 commit 4307fc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions planning/behavior_velocity_template_module/src/manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace behavior_velocity_planner
*
* @param node A reference to the ROS node.
*/
class TemplateModuleManager : public SceneModuleManagerInterface
class TemplateModuleManager : public ::behavior_velocity_planner::SceneModuleManagerInterface
{
public:
explicit TemplateModuleManager(rclcpp::Node & node);
Expand Down Expand Up @@ -86,7 +86,7 @@ class TemplateModuleManager : public SceneModuleManagerInterface
* The TemplateModulePlugin class is used to integrate the TemplateModuleManager into the Behavior
* Velocity Planner.
*/
class TemplateModulePlugin : public PluginWrapper<TemplateModuleManager>
class TemplateModulePlugin : public ::behavior_velocity_planner::PluginWrapper<TemplateModuleManager>
{
};

Expand Down
2 changes: 0 additions & 2 deletions planning/behavior_velocity_template_module/src/scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ namespace autoware
namespace behavior_velocity_planner
{

using ::behavior_path_planner::StopReason;

TemplateModule::TemplateModule(
const int64_t module_id, const rclcpp::Logger & logger, const rclcpp::Clock::SharedPtr clock)
: SceneModuleInterface(module_id, logger, clock)
Expand Down
5 changes: 3 additions & 2 deletions planning/behavior_velocity_template_module/src/scene.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ namespace autoware
namespace behavior_velocity_planner
{
using autoware_auto_planning_msgs::msg::PathWithLaneId;
using ::behavior_path_planner::StopReason;
using ::behavior_velocity_planner::StopReason;
using ::behavior_velocity_planner::SceneModuleInterface;

class TemplateModule : public SceneModuleInterface
class TemplateModule : public ::behavior_velocity_planner::SceneModuleInterface
{
public:
TemplateModule(
Expand Down

0 comments on commit 4307fc1

Please sign in to comment.