Skip to content

Commit cca98c3

Browse files
committed
build(static_centerline_generator): update include paths
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent 6973420 commit cca98c3

10 files changed

+20
-16
lines changed

planning/static_centerline_generator/src/centerline_source/bag_ego_trajectory_based_centerline.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "static_centerline_generator/centerline_source/bag_ego_trajectory_based_centerline.hpp"
15+
#include "centerline_source/bag_ego_trajectory_based_centerline.hpp"
16+
#include "static_centerline_generator_node.hpp"
1617

1718
#include "rclcpp/serialization.hpp"
1819
#include "rosbag2_cpp/reader.hpp"
19-
#include "static_centerline_generator/static_centerline_generator_node.hpp"
2020

2121
#include <nav_msgs/msg/odometry.hpp>
2222

Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
#ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
1616
#define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__BAG_EGO_TRAJECTORY_BASED_CENTERLINE_HPP_
1717

18+
#include "type_alias.hpp"
19+
1820
#include "rclcpp/rclcpp.hpp"
19-
#include "static_centerline_generator/type_alias.hpp"
2021

2122
#include <vector>
2223

planning/static_centerline_generator/src/centerline_source/optimization_trajectory_based_centerline.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "static_centerline_generator/centerline_source/optimization_trajectory_based_centerline.hpp"
15+
#include "centerline_source/optimization_trajectory_based_centerline.hpp"
16+
#include "static_centerline_generator_node.hpp"
17+
#include "utils.hpp"
1618

1719
#include "motion_utils/resample/resample.hpp"
1820
#include "motion_utils/trajectory/conversion.hpp"
1921
#include "obstacle_avoidance_planner/node.hpp"
2022
#include "path_smoother/elastic_band_smoother.hpp"
21-
#include "static_centerline_generator/static_centerline_generator_node.hpp"
22-
#include "static_centerline_generator/utils.hpp"
2323
#include "tier4_autoware_utils/ros/parameter.hpp"
2424

2525
namespace static_centerline_generator
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
#ifndef STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
1616
#define STATIC_CENTERLINE_GENERATOR__CENTERLINE_SOURCE__OPTIMIZATION_TRAJECTORY_BASED_CENTERLINE_HPP_ // NOLINT
1717

18+
#include "type_alias.hpp"
19+
1820
#include "rclcpp/rclcpp.hpp"
19-
#include "static_centerline_generator/type_alias.hpp"
2021

2122
#include <vector>
2223

planning/static_centerline_generator/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "static_centerline_generator/static_centerline_generator_node.hpp"
15+
#include "static_centerline_generator_node.hpp"
1616

1717
int main(int argc, char * argv[])
1818
{

planning/static_centerline_generator/src/static_centerline_generator_node.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "static_centerline_generator/static_centerline_generator_node.hpp"
15+
#include "centerline_source/bag_ego_trajectory_based_centerline.hpp"
16+
#include "static_centerline_generator_node.hpp"
17+
#include "type_alias.hpp"
18+
#include "utils.hpp"
1619

1720
#include "lanelet2_extension/utility/message_conversion.hpp"
1821
#include "lanelet2_extension/utility/query.hpp"
@@ -21,10 +24,7 @@
2124
#include "map_projection_loader/load_info_from_lanelet2_map.hpp"
2225
#include "motion_utils/resample/resample.hpp"
2326
#include "motion_utils/trajectory/conversion.hpp"
24-
#include "static_centerline_generator/centerline_source/bag_ego_trajectory_based_centerline.hpp"
2527
#include "static_centerline_generator/msg/points_with_lane_id.hpp"
26-
#include "static_centerline_generator/type_alias.hpp"
27-
#include "static_centerline_generator/utils.hpp"
2828
#include "tier4_autoware_utils/geometry/geometry.hpp"
2929
#include "tier4_autoware_utils/ros/parameter.hpp"
3030

Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
#ifndef STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
1616
#define STATIC_CENTERLINE_GENERATOR__STATIC_CENTERLINE_GENERATOR_NODE_HPP_
1717

18+
#include "centerline_source/optimization_trajectory_based_centerline.hpp"
19+
#include "type_alias.hpp"
20+
1821
#include "rclcpp/rclcpp.hpp"
19-
#include "static_centerline_generator/centerline_source/optimization_trajectory_based_centerline.hpp"
2022
#include "static_centerline_generator/srv/load_map.hpp"
2123
#include "static_centerline_generator/srv/plan_path.hpp"
2224
#include "static_centerline_generator/srv/plan_route.hpp"
23-
#include "static_centerline_generator/type_alias.hpp"
2425
#include "vehicle_info_util/vehicle_info_util.hpp"
2526

2627
#include <geography_utils/lanelet2_projector.hpp>

planning/static_centerline_generator/src/utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "static_centerline_generator/utils.hpp"
15+
#include "utils.hpp"
1616

1717
#include "behavior_path_planner_common/data_manager.hpp"
1818
#include "behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"

planning/static_centerline_generator/include/static_centerline_generator/utils.hpp planning/static_centerline_generator/src/utils.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
#ifndef STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
1616
#define STATIC_CENTERLINE_GENERATOR__UTILS_HPP_
1717

18+
#include "type_alias.hpp"
19+
1820
#include "route_handler/route_handler.hpp"
19-
#include "static_centerline_generator/type_alias.hpp"
2021

2122
#include <rclcpp/time.hpp>
2223

0 commit comments

Comments
 (0)