Add ISO integrity check

This commit is contained in:
Antonino Di Guardo 2026-04-22 15:06:02 +02:00 committed by GitHub
parent 80b6faef10
commit e26c80c129
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 748 additions and 79 deletions

View file

@ -10,6 +10,19 @@ rXmlNode::rXmlNode(const pugi::xml_node& node)
handle = node;
}
std::shared_ptr<rXmlNode> rXmlNode::GetChild(std::string_view name)
{
if (handle)
{
if (const pugi::xml_node child = handle.child(name))
{
return std::make_shared<rXmlNode>(child);
}
}
return nullptr;
}
std::shared_ptr<rXmlNode> rXmlNode::GetChildren()
{
if (handle)