Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CARTOGRAPHER_ROS_CARTOGRAPHER_ROS_OFFLINE_NODE_H
00018 #define CARTOGRAPHER_ROS_CARTOGRAPHER_ROS_OFFLINE_NODE_H
00019
00020 #include <functional>
00021 #include <memory>
00022 #include <string>
00023 #include <vector>
00024
00025 #include "cartographer/mapping/map_builder_interface.h"
00026 #include "cartographer_ros/node_options.h"
00027
00028 namespace cartographer_ros {
00029
00030 using MapBuilderFactory =
00031 std::function<std::unique_ptr<::cartographer::mapping::MapBuilderInterface>(
00032 const ::cartographer::mapping::proto::MapBuilderOptions&)>;
00033
00034 void RunOfflineNode(const MapBuilderFactory& map_builder_factory);
00035
00036 }
00037
00038 #endif // CARTOGRAPHER_ROS_CARTOGRAPHER_ROS_OFFLINE_NODE_H