Skip to content
Snippets Groups Projects

Refactor inheritance in armem/core

Merged Rainer Kartmann requested to merge armem/refactor-inheritance into armem/dev
3 files
+ 57
35
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -268,33 +268,6 @@ namespace armarx::armem::base
return "entity";
}
virtual _Derived copy() const override
{
_Derived d;
this->_copySelf(d);
return d;
}
virtual _Derived copyEmpty() const override
{
_Derived d;
this->_copySelfEmpty(d);
return d;
}
protected:
virtual void _copySelf(DerivedT& other) const override
{
Base::_copySelf(other);
}
virtual void _copySelfEmpty(DerivedT& other) const override
{
Base::_copySelfEmpty(other);
}
private:
Loading