Skip to content

Commit

Permalink
refactor(tier4_planning_rviz_plugin): apply clang-tidy for mission_ch…
Browse files Browse the repository at this point in the history
…eckpoint (tier4#1634)

refactor(tier4_planning_rviz_plugin): apply clang-tidy for mission_checkpoint
  • Loading branch information
h-ohta authored and boyali committed Sep 28, 2022
1 parent 2de62d2 commit 64a9f3d
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,19 @@ class MissionCheckpointTool : public rviz_default_plugins::tools::PoseTool

public:
MissionCheckpointTool();
virtual ~MissionCheckpointTool() {}
virtual void onInitialize();
void onInitialize() override;

protected:
virtual void onPoseSet(double x, double y, double theta);
void onPoseSet(double x, double y, double theta) override;

private Q_SLOTS:
void updateTopic();

private:
private: // NOLINT for Qt
rclcpp::Clock::SharedPtr clock_;
rclcpp::Publisher<geometry_msgs::msg::PoseStamped>::SharedPtr pose_pub_;

rviz_common::properties::StringProperty * pose_topic_property_;
rviz_common::properties::StringProperty * twist_topic_property_;
rviz_common::properties::FloatProperty * std_dev_x_;
rviz_common::properties::FloatProperty * std_dev_y_;
rviz_common::properties::FloatProperty * std_dev_theta_;
Expand Down

0 comments on commit 64a9f3d

Please sign in to comment.