Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: apply autoware_ prefix for bag_time_manager_rviz_plugin #9986

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package bag_time_manager_rviz_plugin
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package autoware_bag_time_manager_rviz_plugin
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.40.0 (2024-12-12)
-------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(bag_time_manager_rviz_plugin)
project(autoware_bag_time_manager_rviz_plugin)

find_package(autoware_cmake REQUIRED)
autoware_package()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bag_time_manager_rviz_plugin
# autoware_bag_time_manager_rviz_plugin

## Purpose

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>bag_time_manager_rviz_plugin</name>
<name>autoware_bag_time_manager_rviz_plugin</name>
<version>0.40.0</version>
<description>Rviz plugin to publish and control the ros bag</description>
<maintainer email="[email protected]">Taiki Tanaka</maintainer>
<maintainer email="[email protected]">Junya Sasaki</maintainer>
<license>Apache License 2.0</license>

<buildtool_depend>ament_cmake_auto</buildtool_depend>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<library path="bag_time_manager_rviz_plugin">
<library path="autoware_bag_time_manager_rviz_plugin">

<class
type="rviz_plugins::BagTimeManagerPanel"
type="autoware::visualization::bag_time_manager_rviz_plugin::BagTimeManagerPanel"
base_class_type="rviz_common::Panel">
<description>Panel that publishes a service to modify its speed.</description>
</class>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2022 Tier IV, Inc. All rights reserved.
// Copyright 2025 Tier IV, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@

#include <memory>

namespace rviz_plugins
namespace autoware::visualization::bag_time_manager_rviz_plugin
{
BagTimeManagerPanel::BagTimeManagerPanel(QWidget * parent) : rviz_common::Panel(parent)
{
Expand Down Expand Up @@ -111,7 +111,8 @@
}
});
}
} // namespace rviz_plugins
} // namespace autoware::visualization::bag_time_manager_rviz_plugin

#include <pluginlib/class_list_macros.hpp>
PLUGINLIB_EXPORT_CLASS(rviz_plugins::BagTimeManagerPanel, rviz_common::Panel)
PLUGINLIB_EXPORT_CLASS(

Check warning on line 117 in visualization/autoware_bag_time_manager_rviz_plugin/src/bag_time_manager_panel.cpp

View check run for this annotation

Codecov / codecov/patch

visualization/autoware_bag_time_manager_rviz_plugin/src/bag_time_manager_panel.cpp#L117

Added line #L117 was not covered by tests
autoware::visualization::bag_time_manager_rviz_plugin::BagTimeManagerPanel, rviz_common::Panel)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2022 Tier IV, Inc. All rights reserved.
// Copyright 2025 Tier IV, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,7 @@
#include <memory>
#include <string>

namespace rviz_plugins
namespace autoware::visualization::bag_time_manager_rviz_plugin
{
using rosbag2_interfaces::srv::Pause;
using rosbag2_interfaces::srv::Resume;
Expand Down Expand Up @@ -67,6 +67,6 @@ protected Q_SLOTS:
STATE current_state_{RESUME};
};

} // namespace rviz_plugins
} // namespace autoware::visualization::bag_time_manager_rviz_plugin

#endif // BAG_TIME_MANAGER_PANEL_HPP_
Loading