Skip to content

Commit

Permalink
refactor: rename node.hpp to object_association_merger_node.hpp
Browse files Browse the repository at this point in the history
Signed-off-by: Taekjin LEE <[email protected]>
  • Loading branch information
technolojin committed Jun 24, 2024
1 parent 07e6d63 commit ec75674
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion perception/object_merger/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include_directories(
ament_auto_add_library(${PROJECT_NAME} SHARED
src/data_association/data_association.cpp
src/data_association/mu_successive_shortest_path/mu_successive_shortest_path_wrapper.cpp
src/node.cpp
src/object_association_merger_node.cpp
)

target_link_libraries(${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_MERGER__NODE_HPP_
#define AUTOWARE__OBJECT_MERGER__NODE_HPP_
#ifndef AUTOWARE__OBJECT_MERGER__OBJECT_ASSOCIATION_MERGER_NODE_HPP_
#define AUTOWARE__OBJECT_MERGER__OBJECT_ASSOCIATION_MERGER_NODE_HPP_

#include "autoware/object_merger/data_association/data_association.hpp"
#include "autoware/universe_utils/ros/debug_publisher.hpp"
Expand Down Expand Up @@ -91,4 +91,4 @@ class ObjectAssociationMergerNode : public rclcpp::Node
};
} // namespace autoware::object_merger

#endif // AUTOWARE__OBJECT_MERGER__NODE_HPP_
#endif // AUTOWARE__OBJECT_MERGER__OBJECT_ASSOCIATION_MERGER_NODE_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#define EIGEN_MPL2_ONLY

#include "autoware/object_merger/node.hpp"
#include "autoware/object_merger/object_association_merger_node.hpp"

#include "autoware/universe_utils/geometry/geometry.hpp"
#include "object_recognition_utils/object_recognition_utils.hpp"
Expand Down

0 comments on commit ec75674

Please sign in to comment.