Skip to content

Commit

Permalink
Cleaned up includes in the rest of the packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutherland333 committed Jun 29, 2024
1 parent 3543710 commit 4d93350
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
9 changes: 5 additions & 4 deletions rosplane_extra/include/input_mapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
#define INPUT_MAPPER_HPP

#include <rclcpp/rclcpp.hpp>
#include <rosflight_msgs/msg/rc_raw.hpp>
#include <rosflight_msgs/msg/command.hpp>
#include <rosplane_msgs/msg/controller_commands.hpp>
#include <rosplane_msgs/msg/state.hpp>
#include <rosflight_msgs/msg/rc_raw.hpp>
#include <std_srvs/srv/trigger.hpp>
#include <param_manager/param_manager.hpp>

#include "param_manager/param_manager.hpp"
#include "rosplane_msgs/msg/controller_commands.hpp"
#include "rosplane_msgs/msg/state.hpp"

namespace rosplane
{
Expand Down
20 changes: 9 additions & 11 deletions rosplane_gcs/src/rviz_waypoint_publisher.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#include "rclcpp/rclcpp.hpp"
#include "rosplane_msgs/msg/waypoint.hpp"
#include "rclcpp/logging.hpp"
#include "visualization_msgs/msg/marker.hpp"
#include "rosplane_msgs/msg/waypoint.hpp"
#include "rosplane_msgs/msg/state.hpp"
// #include "geometry_msgs/msg/point.hpp"
// #include "std_msgs/msg/header.hpp"
#include "tf2_ros/transform_broadcaster.h"
#include "tf2/LinearMath/Quaternion.h"
#include "geometry_msgs/msg/transform_stamped.hpp"
#include <ament_index_cpp/get_package_share_directory.hpp>
#include <geometry_msgs/msg/transform_stamped.hpp>
#include <rclcpp/logging.hpp>
#include <rclcpp/rclcpp.hpp>
#include <tf2/LinearMath/Quaternion.h>
#include <tf2_ros/transform_broadcaster.h>
#include <visualization_msgs/msg/marker.hpp>

#include "rosplane_msgs/msg/state.hpp"
#include "rosplane_msgs/msg/waypoint.hpp"

#define SCALE 5.0
#define TEXT_SCALE 15.0
Expand Down
12 changes: 6 additions & 6 deletions rosplane_sim/src/gazebo_state_transcription.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#include <chrono>
#include <memory>

#include "Eigen/Geometry"
#include "geometry_msgs/msg/vector3_stamped.hpp"
#include "nav_msgs/msg/odometry.hpp"
#include "rclcpp/rclcpp.hpp"
#include "rosplane_msgs/msg/state.hpp"
#include <Eigen/Geometry>
#include <geometry_msgs/msg/vector3_stamped.hpp>
#include <nav_msgs/msg/odometry.hpp>
#include <rclcpp/rclcpp.hpp>

#include "chrono"
#include "rosplane_msgs/msg/state.hpp"

using namespace std::chrono_literals;
using rosplane_msgs::msg::State;
Expand Down
3 changes: 2 additions & 1 deletion rosplane_tuning/include/signal_generator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@
#ifndef TUNING_SIGNAL_GENERATOR_HPP
#define TUNING_SIGNAL_GENERATOR_HPP

#include "rosplane_msgs/msg/controller_commands.hpp"
#include <rcl_interfaces/msg/set_parameters_result.hpp>
#include <rclcpp/rclcpp.hpp>
#include <std_srvs/srv/trigger.hpp>

#include "rosplane_msgs/msg/controller_commands.hpp"

namespace rosplane
{
/**
Expand Down

0 comments on commit 4d93350

Please sign in to comment.