Skip to content
Snippets Groups Projects
Commit 33de7dc7 authored by Fabian Reister's avatar Fabian Reister
Browse files

attachements with timestamp

parent 263a2c20
No related branches found
No related tags found
2 merge requests!157armem/dev => master,!145Feature/armem object memory attachments
......@@ -39,6 +39,10 @@
<ObjectChild key="active">
<Bool/>
</ObjectChild>
<ObjectChild key="timestamp">
<Time/>
</ObjectChild>
</Object>
<!-- Fixed transformation between agent and articulated object -->
......@@ -59,6 +63,10 @@
<ObjectChild key="active">
<Bool/>
</ObjectChild>
<ObjectChild key="timestamp">
<Time/>
</ObjectChild>
</Object>
</GenerateTypes>
......
......@@ -50,7 +50,7 @@ namespace armarx::armem
aron::fromAron(dto.transformation, bo.transformation);
fromAron(dto.object, bo.object);
aron::fromAron(dto.active, bo.active);
// TODO aron::fromAron(dto.timestamp, bo.timestamp);
}
void toAron(arondto::attachment::ObjectAttachment& dto, const attachment::ObjectAttachment& bo)
......@@ -59,6 +59,7 @@ namespace armarx::armem
aron::toAron(dto.transformation, bo.transformation);
toAron(dto.object, bo.object);
aron::toAron(dto.active, bo.active);
// TODO aron::toAron(dto.timestamp, bo.timestamp);
}
......@@ -68,6 +69,7 @@ namespace armarx::armem
aron::fromAron(dto.transformation, bo.transformation);
fromAron(dto.object, bo.object);
aron::fromAron(dto.active, bo.active);
// TODO aron::fromAron(dto.timestamp, bo.timestamp);
}
void toAron(arondto::attachment::ArticulatedObjectAttachment& dto, const attachment::ArticulatedObjectAttachment& bo)
......@@ -76,6 +78,7 @@ namespace armarx::armem
aron::toAron(dto.transformation, bo.transformation);
toAron(dto.object, bo.object);
aron::toAron(dto.active, bo.active);
// TODO aron::toAron(dto.timestamp, bo.timestamp);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment