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

Added insertChild()

parent 3550eb56
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,9 @@ namespace mjcf
OtherDerived getOrCreateChild();
template <class OtherDerived>
void insertChild(Element<OtherDerived>& element, bool front = false);
/// Insert an element at the front.
template <class OtherDerived>
void insertFirstChild(Element<OtherDerived>& element);
......@@ -397,6 +400,13 @@ namespace mjcf
}
template <class D>
template <class OtherD>
void Element<D>::insertChild(Element<OtherD>& element, bool front)
{
front ? insertFirstChild(element) : insertEndChild(element());
}
template <class D>
template <class OtherD>
void Element<D>::insertFirstChild(Element<OtherD>& element)
......@@ -480,7 +490,6 @@ namespace mjcf
{ Base<Derived>::operator=(other); return *this; }
#define mjcf_ElementDerivedConstructors(Derived) \
mjcf_ElementDerivedConstructorsBase(Element, Derived)
......
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