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

anonymous namespace

parent 02aa9633
No related branches found
No related tags found
2 merge requests!157armem/dev => master,!145Feature/armem object memory attachments
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
namespace armarx::armem::attachment namespace armarx::armem::attachment
{ {
namespace detail namespace
{ {
template<typename AronClass, typename ArmemClass> template<typename AronClass, typename ArmemClass>
...@@ -127,7 +127,7 @@ namespace armarx::armem::attachment ...@@ -127,7 +127,7 @@ namespace armarx::armem::attachment
return {}; return {};
} }
return detail::getAttachments<::armarx::armem::arondto::attachment::ObjectAttachment, ::armarx::armem::attachment::ObjectAttachment>(qResult.memory); return getAttachments<::armarx::armem::arondto::attachment::ObjectAttachment, ::armarx::armem::attachment::ObjectAttachment>(qResult.memory);
} }
std::vector<ObjectAttachment> Reader::queryObjectAttachments(const armem::Time& timestamp, const std::string& providerName) const std::vector<ObjectAttachment> Reader::queryObjectAttachments(const armem::Time& timestamp, const std::string& providerName) const
...@@ -152,7 +152,7 @@ namespace armarx::armem::attachment ...@@ -152,7 +152,7 @@ namespace armarx::armem::attachment
return {}; return {};
} }
return detail::getAttachments<::armarx::armem::arondto::attachment::ObjectAttachment, ::armarx::armem::attachment::ObjectAttachment>(qResult.memory); return getAttachments<::armarx::armem::arondto::attachment::ObjectAttachment, ::armarx::armem::attachment::ObjectAttachment>(qResult.memory);
} }
std::vector<ArticulatedObjectAttachment> Reader::queryArticulatedObjectAttachments(const armem::Time& timestamp) const std::vector<ArticulatedObjectAttachment> Reader::queryArticulatedObjectAttachments(const armem::Time& timestamp) const
...@@ -177,7 +177,7 @@ namespace armarx::armem::attachment ...@@ -177,7 +177,7 @@ namespace armarx::armem::attachment
return {}; return {};
} }
return detail::getAttachments<::armarx::armem::arondto::attachment::ArticulatedObjectAttachment, ::armarx::armem::attachment::ArticulatedObjectAttachment>(qResult.memory); return getAttachments<::armarx::armem::arondto::attachment::ArticulatedObjectAttachment, ::armarx::armem::attachment::ArticulatedObjectAttachment>(qResult.memory);
} }
std::vector<ArticulatedObjectAttachment> Reader::queryArticulatedObjectAttachments(const armem::Time& timestamp, const std::string& providerName) const std::vector<ArticulatedObjectAttachment> Reader::queryArticulatedObjectAttachments(const armem::Time& timestamp, const std::string& providerName) const
...@@ -202,7 +202,7 @@ namespace armarx::armem::attachment ...@@ -202,7 +202,7 @@ namespace armarx::armem::attachment
return {}; return {};
} }
return detail::getAttachments<::armarx::armem::arondto::attachment::ArticulatedObjectAttachment, ::armarx::armem::attachment::ArticulatedObjectAttachment>(qResult.memory); return getAttachments<::armarx::armem::arondto::attachment::ArticulatedObjectAttachment, ::armarx::armem::attachment::ArticulatedObjectAttachment>(qResult.memory);
} }
......
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