Skip to content

Commit

Permalink
refactor: refactor object_range_splitter library and node
Browse files Browse the repository at this point in the history
Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
  • Loading branch information
technolojin committed Jun 24, 2024
1 parent fc00067 commit 424c5a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion perception/object_range_splitter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ find_package(autoware_cmake REQUIRED)
autoware_package()

ament_auto_add_library(${PROJECT_NAME} SHARED
src/node.cpp
src/object_range_splitter_node.cpp
)

rclcpp_components_register_node(${PROJECT_NAME}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef AUTOWARE__OBJECT_RANGE_SPLITTER__NODE_HPP_
#define AUTOWARE__OBJECT_RANGE_SPLITTER__NODE_HPP_
#ifndef AUTOWARE__OBJECT_RANGE_SPLITTER__OBJECT_RANGE_SPLITTER_NODE_HPP_
#define AUTOWARE__OBJECT_RANGE_SPLITTER__OBJECT_RANGE_SPLITTER_NODE_HPP_

#include <rclcpp/rclcpp.hpp>

Expand Down Expand Up @@ -44,4 +44,4 @@ class ObjectRangeSplitterNode : public rclcpp::Node

} // namespace autoware::object_range_splitter

#endif // AUTOWARE__OBJECT_RANGE_SPLITTER__NODE_HPP_
#endif // AUTOWARE__OBJECT_RANGE_SPLITTER__OBJECT_RANGE_SPLITTER_NODE_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "autoware/object_range_splitter/node.hpp"
#include "autoware/object_range_splitter/object_range_splitter_node.hpp"

namespace autoware::object_range_splitter
{
Expand Down

0 comments on commit 424c5a7

Please sign in to comment.