New Session class to contain the list of sources. Loading and Saving of

session files in XML. Verified deletion of Nodes, Groups and Sources.
This commit is contained in:
brunoherbelin
2020-05-02 13:26:57 +02:00
parent bdb092dddb
commit cc03e7b7cd
33 changed files with 1033 additions and 377 deletions

View File

@@ -448,3 +448,9 @@ void Frame::draw(glm::mat4 modelview, glm::mat4 projection)
}
}
void Frame::accept(Visitor& v)
{
Node::accept(v);
v.visit(*this);
}