mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-05-07 13:37:46 +00:00
Add ISO integrity check
This commit is contained in:
parent
80b6faef10
commit
e26c80c129
23 changed files with 748 additions and 79 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue