Skip to content

Commit

Permalink
rename to autoware_rtc_replayer
Browse files Browse the repository at this point in the history
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
  • Loading branch information
soblin committed Jun 6, 2024
1 parent 95b83c3 commit c673f43
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(rtc_replayer)
project(autoware_rtc_replayer)

### Compile options
if(NOT CMAKE_CXX_STANDARD)
Expand All @@ -17,7 +17,7 @@ ament_auto_add_library(${PROJECT_NAME} SHARED
)

rclcpp_components_register_node(${PROJECT_NAME}
PLUGIN "rtc_replayer::RTCReplayerNode"
PLUGIN "autoware::rtc_replayer::RTCReplayerNode"
EXECUTABLE ${PROJECT_NAME}_node
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <string>
#include <vector>

namespace rtc_replayer
namespace autoware::rtc_replayer
{
using std::placeholders::_1;
using std::placeholders::_2;
Expand All @@ -54,6 +54,6 @@ class RTCReplayerNode : public rclcpp::Node
std::map<std::string, uint8_t> prev_cmd_status_;
};

} // namespace rtc_replayer
} // namespace autoware::rtc_replayer

#endif // RTC_REPLAYER__RTC_REPLAYER_NODE_HPP_
3 changes: 3 additions & 0 deletions planning/autoware_rtc_replayer/launch/rtc_replayer.launch.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<launch>
<node pkg="autoware_rtc_replayer" exec="rtc_replayer_node" name="rtc_replayer" output="screen"/>
</launch>
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?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>rtc_replayer</name>
<name>autoware_rtc_replayer</name>
<version>0.1.0</version>
<description>The rtc_replayer package</description>
<description>The autoware_rtc_replayer package</description>

<maintainer email="fumiya.watanabe@tier4.jp">Fumiya Watanabe</maintainer>
<maintainer email="taiki.tanaka@tier4.jp">Taiki Tanaka</maintainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include <algorithm>

namespace rtc_replayer
namespace autoware::rtc_replayer
{

std::string getModuleStatus(const uint8_t module_status)
Expand Down Expand Up @@ -124,7 +124,7 @@ void RTCReplayerNode::onCooperateStatus(const CooperateStatusArray::ConstSharedP
}
}

} // namespace rtc_replayer
} // namespace autoware::rtc_replayer

#include <rclcpp_components/register_node_macro.hpp>
RCLCPP_COMPONENTS_REGISTER_NODE(rtc_replayer::RTCReplayerNode)
RCLCPP_COMPONENTS_REGISTER_NODE(autoware::rtc_replayer::RTCReplayerNode)
3 changes: 0 additions & 3 deletions planning/rtc_replayer/launch/rtc_replayer.launch.xml

This file was deleted.

0 comments on commit c673f43

Please sign in to comment.