diff --git a/rosplane/include/estimator_continuous_discrete.hpp b/rosplane/include/estimator_continuous_discrete.hpp index 9311438..2bc654f 100644 --- a/rosplane/include/estimator_continuous_discrete.hpp +++ b/rosplane/include/estimator_continuous_discrete.hpp @@ -1,13 +1,14 @@ #ifndef ESTIMATOR_CONTINUOUS_DISCRETE_H #define ESTIMATOR_CONTINUOUS_DISCRETE_H -#include "estimator_ekf.hpp" -#include "estimator_ros.hpp" +#include #include -#include #include +#include "estimator_ekf.hpp" +#include "estimator_ros.hpp" + namespace rosplane { diff --git a/rosplane/include/estimator_ekf.hpp b/rosplane/include/estimator_ekf.hpp index 150e0ff..4d66ea7 100644 --- a/rosplane/include/estimator_ekf.hpp +++ b/rosplane/include/estimator_ekf.hpp @@ -1,13 +1,15 @@ #ifndef ESTIMATOR_EKF_H #define ESTIMATOR_EKF_H -#include "estimator_ros.hpp" -#include +#include #include #include -#include + +#include #include +#include "estimator_ros.hpp" + namespace rosplane { diff --git a/rosplane/include/estimator_ros.hpp b/rosplane/include/estimator_ros.hpp index 502436d..cda7c8c 100644 --- a/rosplane/include/estimator_ros.hpp +++ b/rosplane/include/estimator_ros.hpp @@ -12,7 +12,7 @@ #define ESTIMATOR_ROS_H #include -#include + #include #include #include @@ -21,6 +21,7 @@ #include #include #include +#include #include "param_manager.hpp" #include "rosplane_msgs/msg/state.hpp" diff --git a/rosplane/src/estimator_continuous_discrete.cpp b/rosplane/src/estimator_continuous_discrete.cpp index 4c8f4a0..3c964f1 100644 --- a/rosplane/src/estimator_continuous_discrete.cpp +++ b/rosplane/src/estimator_continuous_discrete.cpp @@ -1,8 +1,9 @@ -#include "estimator_continuous_discrete.hpp" -#include "estimator_ros.hpp" #include #include +#include "estimator_continuous_discrete.hpp" +#include "estimator_ros.hpp" + namespace rosplane { diff --git a/rosplane/src/estimator_ekf.cpp b/rosplane/src/estimator_ekf.cpp index 0645d4c..3938867 100644 --- a/rosplane/src/estimator_ekf.cpp +++ b/rosplane/src/estimator_ekf.cpp @@ -1,9 +1,11 @@ -#include "estimator_ekf.hpp" -#include "estimator_ros.hpp" #include -#include #include +#include + +#include "estimator_ekf.hpp" +#include "estimator_ros.hpp" + namespace rosplane { diff --git a/rosplane/src/estimator_ros.cpp b/rosplane/src/estimator_ros.cpp index d40bb32..1234a13 100644 --- a/rosplane/src/estimator_ros.cpp +++ b/rosplane/src/estimator_ros.cpp @@ -1,10 +1,11 @@ -#include "estimator_ros.hpp" -#include "estimator_continuous_discrete.hpp" #include #include #include #include +#include "estimator_ros.hpp" +#include "estimator_continuous_discrete.hpp" + namespace rosplane {