File tree 7 files changed +11
-11
lines changed
include/autoware/map_loader
7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ rclcpp_components_register_node(pointcloud_map_loader_node
30
30
ament_auto_add_library(lanelet2_map_loader_node SHARED
31
31
src/lanelet2_map_loader/lanelet2_map_loader_node.cpp
32
32
src/lanelet2_map_loader/lanelet2_differential_loader_module.cpp
33
- src/lanelet2_map_loader/utils .cpp
33
+ src/lanelet2_map_loader/lanelet2_map_loader_utils .cpp
34
34
)
35
35
36
36
rclcpp_components_register_node(lanelet2_map_loader_node
@@ -52,6 +52,7 @@ if(BUILD_TESTING)
52
52
get_filename_component (filename ${filepath} NAME )
53
53
string (REGEX REPLACE ".cpp" "" test_name ${filename} )
54
54
ament_add_gmock(${test_name} ${filepath} )
55
+ target_include_directories (${test_name} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /include )
55
56
target_link_libraries (${test_name} ${${PROJECT_NAME} _LIBRARIES})
56
57
target_link_libraries (${test_name} yaml-cpp)
57
58
ament_target_dependencies(${test_name} ${${PROJECT_NAME} _FOUND_BUILD_DEPENDS})
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef LANELET2_MAP_LOADER__UTILS_HPP_
16
- #define LANELET2_MAP_LOADER__UTILS_HPP_
15
+ #ifndef AUTOWARE__MAP_LOADER__LANELET2_MAP_LOADER_UTILS_HPP_
16
+ #define AUTOWARE__MAP_LOADER__LANELET2_MAP_LOADER_UTILS_HPP_
17
17
18
18
#include < rclcpp/time.hpp>
19
19
@@ -57,4 +57,4 @@ autoware_map_msgs::msg::LaneletMapBin create_map_bin_msg(
57
57
58
58
} // namespace autoware::map_loader
59
59
60
- #endif // LANELET2_MAP_LOADER__UTILS_HPP_
60
+ #endif // AUTOWARE__MAP_LOADER__LANELET2_MAP_LOADER_UTILS_HPP_
Original file line number Diff line number Diff line change 16
16
17
17
#include " lanelet2_local_projector.hpp"
18
18
#include " lanelet2_map_loader_node.hpp"
19
- #include " utils.hpp"
19
+
20
+ #include < autoware/map_loader/lanelet2_map_loader_utils.hpp>
20
21
21
22
#include < map>
22
23
#include < memory>
Original file line number Diff line number Diff line change 15
15
#ifndef LANELET2_MAP_LOADER__LANELET2_DIFFERENTIAL_LOADER_MODULE_HPP_
16
16
#define LANELET2_MAP_LOADER__LANELET2_DIFFERENTIAL_LOADER_MODULE_HPP_
17
17
18
- #include " utils.hpp"
19
-
20
18
#include < autoware/component_interface_specs_universe/map.hpp>
21
19
#include < autoware/component_interface_utils/rclcpp.hpp>
22
20
#include < autoware/geography_utils/lanelet2_projector.hpp>
21
+ #include < autoware/map_loader/lanelet2_map_loader_utils.hpp>
23
22
#include < autoware_lanelet2_extension/projection/mgrs_projector.hpp>
24
23
#include < autoware_lanelet2_extension/utility/message_conversion.hpp>
25
24
#include < autoware_lanelet2_extension/utility/utilities.hpp>
Original file line number Diff line number Diff line change 34
34
#include " lanelet2_map_loader_node.hpp"
35
35
36
36
#include " lanelet2_local_projector.hpp"
37
- #include " utils.hpp"
38
37
39
38
#include < ament_index_cpp/get_package_prefix.hpp>
40
39
#include < autoware/geography_utils/lanelet2_projector.hpp>
40
+ #include < autoware/map_loader/lanelet2_map_loader_utils.hpp>
41
41
#include < autoware_lanelet2_extension/io/autoware_osm_parser.hpp>
42
42
#include < autoware_lanelet2_extension/projection/mgrs_projector.hpp>
43
43
#include < autoware_lanelet2_extension/projection/transverse_mercator_projector.hpp>
Original file line number Diff line number Diff line change 16
16
#define LANELET2_MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
17
17
18
18
#include " lanelet2_differential_loader_module.hpp"
19
- #include " utils.hpp"
20
19
21
20
#include < autoware/component_interface_specs_universe/map.hpp>
22
21
#include < autoware/component_interface_utils/rclcpp.hpp>
22
+ #include < autoware/map_loader/lanelet2_map_loader_utils.hpp>
23
23
#include < autoware_lanelet2_extension/version.hpp>
24
24
#include < rclcpp/rclcpp.hpp>
25
25
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " utils.hpp"
16
-
17
15
#include " lanelet2_local_projector.hpp"
18
16
19
17
#include < autoware/geography_utils/lanelet2_projector.hpp>
18
+ #include < autoware/map_loader/lanelet2_map_loader_utils.hpp>
20
19
#include < autoware_lanelet2_extension/io/autoware_osm_parser.hpp>
21
20
#include < autoware_lanelet2_extension/projection/mgrs_projector.hpp>
22
21
#include < autoware_lanelet2_extension/projection/transverse_mercator_projector.hpp>
You can’t perform that action at this time.
0 commit comments