Skip to content

Commit

Permalink
deprecated header has been removed for j-turtle (#162)
Browse files Browse the repository at this point in the history
this branch now only supports Iron and later, update CI to reflect that
  • Loading branch information
mikeferguson authored Apr 23, 2024
1 parent 89d9f40 commit 6aa104d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/industrial_ci_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
- {ROS_DISTRO: iron, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2023 Michael Ferguson
* Copyright (C) 2018-2024 Michael Ferguson
* Copyright (C) 2015 Fetch Robotics Inc.
* Copyright (C) 2013-2014 Unbounded Robotics Inc.
*
Expand Down Expand Up @@ -27,7 +27,7 @@
#include <robot_calibration_msgs/msg/calibration_data.hpp>

#include <opencv2/calib3d/calib3d.hpp>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>

namespace robot_calibration
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2022 Michael Ferguson
* Copyright (C) 2022-2024 Michael Ferguson
* Copyright (C) 2014-2017 Fetch Robotics Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -15,15 +15,15 @@
* limitations under the License.
*/

#ifndef ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#define ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#ifndef ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP
#define ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP

#include <rclcpp/rclcpp.hpp>
#include <robot_calibration/finders/feature_finder.hpp>
#include <robot_calibration/util/depth_camera_info.hpp>
#include <robot_calibration/util/eigen_geometry.hpp>
#include <robot_calibration_msgs/msg/calibration_data.hpp>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>

namespace robot_calibration
{
Expand Down Expand Up @@ -110,4 +110,4 @@ class PlaneFinder : public FeatureFinder

} // namespace robot_calibration

#endif // ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#endif // ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP

0 comments on commit 6aa104d

Please sign in to comment.