Re: Question about RS_EntityContainer
Posted by
johnfound on
Dec 30, 2024; 10:24am
URL: https://forum.librecad.org/Question-about-RS-EntityContainer-tp5725899p5725909.html
Ah, yes, verifying, also notice, that RS_Entity::reparent is absolutely the same as RS_Entity::setParent;

virtual void reparent(RS_EntityContainer *parent){
this->parent = parent;
}
void setParent(RS_EntityContainer *p){
parent = p;
}