Skip to content
Snippets Groups Projects
Commit b87f21f3 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add virtual destructors

parent b4f4358d
No related branches found
No related tags found
1 merge request!135Resolve "Add Grasp (Affordance) Memory"
......@@ -12,6 +12,9 @@ namespace armarx::armem::client::query::detail
{
public:
virtual ~NameSelectorOps() = default;
virtual DerivedT& withName(const std::string& name) = 0;
virtual DerivedT& withNamesMatching(const std::string& regex) = 0;
......
......@@ -19,6 +19,7 @@ namespace armarx::armem::client::query::detail
using QueryT = _QueryT;
ChildSelectorOps() = delete;
virtual ~ChildSelectorOps() = default;
ChildSelectorOps(const armem::query::data::QueryTargets& p) :
_parentTargets(p)
......
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