Skip to content

Commit

Permalink
Rename component_player.{cpp}hpp to the composable_player.{cpp}hpp
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Orlov <michael.orlov@apex.ai>
  • Loading branch information
MichaelOrlov committed Dec 10, 2024
1 parent c00bf42 commit 4f6414e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rosbag2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ find_package(rosbag2_transport REQUIRED)

# Library for Rosbag2 composable nodes
add_library(${PROJECT_NAME}_nodes SHARED
src/rosbag2/component_player.cpp
src/rosbag2/composable_player.cpp
# src/rosbag2/composable_recorder.cpp
)
target_include_directories(${PROJECT_NAME}_nodes PUBLIC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* library cannot have, but the consuming code must have inorder to link.
*/

#ifndef ROSBAG2__COMPONENT_PLAYER_HPP_
#define ROSBAG2__COMPONENT_PLAYER_HPP_
#ifndef ROSBAG2__COMPOSABLE_PLAYER_HPP_
#define ROSBAG2__COMPOSABLE_PLAYER_HPP_

#include <string>

Expand Down Expand Up @@ -53,4 +53,4 @@ class Player : public rosbag2_transport::Player {
};
} // namespace rosbag2

#endif // ROSBAG2__COMPONENT_PLAYER_HPP_
#endif // ROSBAG2__COMPOSABLE_PLAYER_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

#include "rclcpp_components/register_node_macro.hpp"
#include "rosbag2/component_player.hpp"
#include "rosbag2/composable_player.hpp"

namespace rosbag2
{
Expand Down

0 comments on commit 4f6414e

Please sign in to comment.