| 89 | std::shared_ptr<XmlEntry> XmlFile::getRoot() { return root; } |
| 90 | |
| 91 | void XmlFile::setRoot(std::shared_ptr<XmlEntry> entry) { root = std::move(entry); } |
| 92 | |
| 93 | std::vector<std::shared_ptr<writer::instructions::WriteInstruction>> |
| 94 | XmlFile::instructions(const std::string& file) const { |