Skip to content

Commit

Permalink
update pose graph stub
Browse files Browse the repository at this point in the history
  • Loading branch information
ojura committed Sep 6, 2018
1 parent 34a816a commit bfb64fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cartographer/cloud/internal/client/pose_graph_stub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ PoseGraphStub::GetAllSubmapData() const {
LOG(FATAL) << "Not implemented";
}

mapping::PoseGraphInterface::SubmapData PoseGraphStub::GetSubmapData(
const SubmapId& submap_id) const {
LOG(FATAL) << "Not implemented";
}

mapping::MapById<mapping::SubmapId, mapping::PoseGraphInterface::SubmapPose>
PoseGraphStub::GetAllSubmapPoses() const {
google::protobuf::Empty request;
Expand Down
2 changes: 2 additions & 0 deletions cartographer/cloud/internal/client/pose_graph_stub.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class PoseGraphStub : public ::cartographer::mapping::PoseGraphInterface {
void RunFinalOptimization() override;
mapping::MapById<mapping::SubmapId, SubmapData> GetAllSubmapData()
const override;
SubmapData GetSubmapData(const SubmapId& submap_id))
const override;
mapping::MapById<mapping::SubmapId, SubmapPose> GetAllSubmapPoses()
const override;
transform::Rigid3d GetLocalToGlobalTransform(
Expand Down

0 comments on commit bfb64fc

Please sign in to comment.