Skip to content

Commit

Permalink
fix(collision_warning): Add missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashuh committed Feb 5, 2022
1 parent 52c12b0 commit 4f029d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#ifndef COLLISION_WARNING_SYSTEM_COLLISION_WARNING_SYSTEM_H
#define COLLISION_WARNING_SYSTEM_COLLISION_WARNING_SYSTEM_H

#include <string>
#include <vector>

#include <ros/ros.h>
#include <ackermann_msgs/AckermannDriveStamped.h>
#include <geometry_msgs/PolygonStamped.h>
#include <nav_msgs/Odometry.h>
#include <nav_msgs/Path.h>
#include <ros/ros.h>

#include <string>
#include <vector>

#include "collision_warning_system/bicycle_model.h"
#include "collision_warning_system/bicycle_state.h"
Expand Down
12 changes: 7 additions & 5 deletions collision_warning_system/src/collision_warning_system.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
#include <limits>
#include <string>
#include <vector>
#include "collision_warning_system/collision_warning_system.h"

#include <ros/ros.h>
#include <ackermann_msgs/AckermannDriveStamped.h>
#include <nav_msgs/Odometry.h>
#include <nav_msgs/Path.h>
#include <ros/ros.h>
#include <std_msgs/Float64.h>
#include <visualization_msgs/Marker.h>

#include "collision_warning_system/collision_warning_system.h"
#include <limits>
#include <string>
#include <vector>

#include "costmap_generator/collision_checker.h"
#include "f1tenth_utils/tf2_wrapper.h"

CollisionWarningSystem::CollisionWarningSystem()
Expand Down

0 comments on commit 4f029d1

Please sign in to comment.