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

extending type

parent 8d63cb66
No related branches found
No related tags found
2 merge requests!157armem/dev => master,!145Feature/armem object memory attachments
......@@ -49,6 +49,7 @@ namespace armarx::armem
fromAron(dto.agent, bo.agent);
aron::fromAron(dto.transformation, bo.transformation);
fromAron(dto.object, bo.object);
aron::fromAron(dto.active, bo.active);
}
......@@ -57,6 +58,7 @@ namespace armarx::armem
toAron(dto.agent, bo.agent);
aron::toAron(dto.transformation, bo.transformation);
toAron(dto.object, bo.object);
aron::toAron(dto.active, bo.active);
}
......@@ -65,6 +67,7 @@ namespace armarx::armem
fromAron(dto.agent, bo.agent);
aron::fromAron(dto.transformation, bo.transformation);
fromAron(dto.object, bo.object);
aron::fromAron(dto.active, bo.active);
}
void toAron(arondto::attachment::ArticulatedObjectAttachment& dto, const attachment::ArticulatedObjectAttachment& bo)
......@@ -72,6 +75,7 @@ namespace armarx::armem
toAron(dto.agent, bo.agent);
aron::toAron(dto.transformation, bo.transformation);
toAron(dto.object, bo.object);
aron::toAron(dto.active, bo.active);
}
......
......@@ -63,6 +63,8 @@ namespace armarx::armem::attachment
ObjectID object;
armem::Time timestamp;
bool active;
};
/**
......@@ -83,6 +85,8 @@ namespace armarx::armem::attachment
armem::Time timestamp;
bool active;
};
} // namespace armarx::armem::attachment
......
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