Skip to content

Commit

Permalink
feat(surround_obstacle_checker): remove include directory (autowarefo…
Browse files Browse the repository at this point in the history
…undation#7507)

* feat(surround_obstacle_checker): remove include directory

Signed-off-by: Takayuki Murooka <[email protected]>

* fix

Signed-off-by: Takayuki Murooka <[email protected]>

* fix

Signed-off-by: Takayuki Murooka <[email protected]>

---------

Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 authored Jun 17, 2024
1 parent ae3b8d7 commit 50b7659
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
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_surround_obstacle_checker/debug_marker.hpp"
#include "debug_marker.hpp"

#include <motion_utils/marker/marker_helper.hpp>
#include <tier4_autoware_utils/geometry/geometry.hpp>
Expand All @@ -23,6 +23,7 @@
#include <tf2_geometry_msgs/tf2_geometry_msgs.hpp>
#endif

#include <limits>
#include <memory>

namespace autoware::surround_obstacle_checker
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_SURROUND_OBSTACLE_CHECKER__DEBUG_MARKER_HPP_
#define AUTOWARE_SURROUND_OBSTACLE_CHECKER__DEBUG_MARKER_HPP_
#ifndef DEBUG_MARKER_HPP_
#define DEBUG_MARKER_HPP_

#include <autoware_vehicle_info_utils/vehicle_info_utils.hpp>
#include <rclcpp/rclcpp.hpp>
Expand Down Expand Up @@ -99,4 +99,4 @@ class SurroundObstacleCheckerDebugNode
rclcpp::Clock::SharedPtr clock_;
};
} // namespace autoware::surround_obstacle_checker
#endif // AUTOWARE_SURROUND_OBSTACLE_CHECKER__DEBUG_MARKER_HPP_
#endif // DEBUG_MARKER_HPP_
2 changes: 1 addition & 1 deletion planning/autoware_surround_obstacle_checker/src/node.cpp
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_surround_obstacle_checker/node.hpp"
#include "node.hpp"

#include <tier4_autoware_utils/geometry/geometry.hpp>
#include <tier4_autoware_utils/ros/update_param.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef AUTOWARE_SURROUND_OBSTACLE_CHECKER__NODE_HPP_
#define AUTOWARE_SURROUND_OBSTACLE_CHECKER__NODE_HPP_
#ifndef NODE_HPP_
#define NODE_HPP_

#include "autoware_surround_obstacle_checker/debug_marker.hpp"
#include "debug_marker.hpp"
#include "tier4_autoware_utils/ros/logger_level_configure.hpp"
#include "tier4_autoware_utils/ros/polling_subscriber.hpp"

Expand Down Expand Up @@ -151,4 +151,4 @@ class SurroundObstacleCheckerNode : public rclcpp::Node
};
} // namespace autoware::surround_obstacle_checker

#endif // AUTOWARE_SURROUND_OBSTACLE_CHECKER__NODE_HPP_
#endif // NODE_HPP_

0 comments on commit 50b7659

Please sign in to comment.