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_CLOUD_INTERNAL_HANDLERS_ADD_IMU_DATA_HANDLER_H
00018 #define CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_ADD_IMU_DATA_HANDLER_H
00019
00020 #include "async_grpc/rpc_handler.h"
00021 #include "cartographer/cloud/internal/handlers/add_sensor_data_handler_base.h"
00022 #include "cartographer/cloud/proto/map_builder_service.pb.h"
00023 #include "google/protobuf/empty.pb.h"
00024
00025 namespace cartographer {
00026 namespace cloud {
00027 namespace handlers {
00028
00029 DEFINE_HANDLER_SIGNATURE(
00030 AddImuDataSignature, async_grpc::Stream<proto::AddImuDataRequest>,
00031 google::protobuf::Empty,
00032 "/cartographer.cloud.proto.MapBuilderService/AddImuData")
00033
00034 class AddImuDataHandler : public AddSensorDataHandlerBase<AddImuDataSignature> {
00035 public:
00036 void OnSensorData(const proto::AddImuDataRequest& request) override;
00037 };
00038
00039 }
00040 }
00041 }
00042
00043 #endif // CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_ADD_IMU_DATA_HANDLER_H