add_fixed_frame_pose_data_handler.h
Go to the documentation of this file.
00001 /*
00002  * Copyright 2017 The Cartographer Authors
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *      http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #ifndef CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_ADD_FIXED_FRAME_POSE_DATA_HANDLER_H
00018 #define CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_ADD_FIXED_FRAME_POSE_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     AddFixedFramePoseDataSignature,
00031     async_grpc::Stream<proto::AddFixedFramePoseDataRequest>,
00032     google::protobuf::Empty,
00033     "/cartographer.cloud.proto.MapBuilderService/AddFixedFramePoseData")
00034 
00035 class AddFixedFramePoseDataHandler
00036     : public AddSensorDataHandlerBase<AddFixedFramePoseDataSignature> {
00037  public:
00038   void OnSensorData(
00039       const proto::AddFixedFramePoseDataRequest& request) override;
00040 };
00041 
00042 }  // namespace handlers
00043 }  // namespace cloud
00044 }  // namespace cartographer
00045 
00046 #endif  // CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_ADD_FIXED_FRAME_POSE_DATA_HANDLER_H


cartographer
Author(s): The Cartographer Authors
autogenerated on Thu May 9 2019 02:27:35