Skip to content

Commit

Permalink
re-organized include order
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutherland333 committed Jul 12, 2024
1 parent 03761d1 commit a54788a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 14 deletions.
7 changes: 4 additions & 3 deletions rosplane/include/estimator_continuous_discrete.hpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#ifndef ESTIMATOR_CONTINUOUS_DISCRETE_H
#define ESTIMATOR_CONTINUOUS_DISCRETE_H

#include "estimator_ekf.hpp"
#include "estimator_ros.hpp"
#include <math.h>

#include <Eigen/Geometry>
#include <math.h>
#include <yaml-cpp/yaml.h>

#include "estimator_ekf.hpp"
#include "estimator_ros.hpp"

namespace rosplane
{

Expand Down
8 changes: 5 additions & 3 deletions rosplane/include/estimator_ekf.hpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#ifndef ESTIMATOR_EKF_H
#define ESTIMATOR_EKF_H

#include "estimator_ros.hpp"
#include <Eigen/Geometry>
#include <cassert>
#include <math.h>
#include <tuple>
#include <cassert>

#include <Eigen/Geometry>
#include <yaml-cpp/yaml.h>

#include "estimator_ros.hpp"

namespace rosplane
{

Expand Down
3 changes: 2 additions & 1 deletion rosplane/include/estimator_ros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define ESTIMATOR_ROS_H

#include <chrono>
#include <yaml-cpp/yaml.h>

#include <ament_index_cpp/get_package_share_directory.hpp>
#include <geometry_msgs/msg/twist_stamped.hpp>
#include <rclcpp/rclcpp.hpp>
Expand All @@ -21,6 +21,7 @@
#include <rosflight_msgs/msg/status.hpp>
#include <sensor_msgs/msg/imu.hpp>
#include <sensor_msgs/msg/nav_sat_fix.hpp>
#include <yaml-cpp/yaml.h>

#include "param_manager.hpp"
#include "rosplane_msgs/msg/state.hpp"
Expand Down
5 changes: 3 additions & 2 deletions rosplane/src/estimator_continuous_discrete.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#include "estimator_continuous_discrete.hpp"
#include "estimator_ros.hpp"
#include <functional>
#include <tuple>

#include "estimator_continuous_discrete.hpp"
#include "estimator_ros.hpp"

namespace rosplane
{

Expand Down
8 changes: 5 additions & 3 deletions rosplane/src/estimator_ekf.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#include "estimator_ekf.hpp"
#include "estimator_ros.hpp"
#include <functional>
#include <rclcpp/logging.hpp>
#include <tuple>

#include <rclcpp/logging.hpp>

#include "estimator_ekf.hpp"
#include "estimator_ros.hpp"

namespace rosplane
{

Expand Down
5 changes: 3 additions & 2 deletions rosplane/src/estimator_ros.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#include "estimator_ros.hpp"
#include "estimator_continuous_discrete.hpp"
#include <cstdlib>
#include <cstring>
#include <filesystem>
#include <fstream>

#include "estimator_ros.hpp"
#include "estimator_continuous_discrete.hpp"

namespace rosplane
{

Expand Down

0 comments on commit a54788a

Please sign in to comment.