1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added an overload to ValueTree::fromXml() which can take an XML string and parse it

This commit is contained in:
jules 2019-05-19 08:16:10 +01:00
parent 0fb8c8e82a
commit 49fa0f73e4
2 changed files with 14 additions and 0 deletions

View file

@ -1015,6 +1015,14 @@ ValueTree ValueTree::fromXml (const XmlElement& xml)
return {};
}
ValueTree ValueTree::fromXml (const String& xmlText)
{
if (auto xml = parseXML (xmlText))
return fromXml (*xml);
return {};
}
String ValueTree::toXmlString (const XmlElement::TextFormat& format) const
{
if (auto xml = createXml())

View file

@ -438,6 +438,12 @@ public:
*/
static ValueTree fromXml (const XmlElement& xml);
/** Tries to recreate a tree from its XML representation.
This isn't designed to cope with random XML data - it should only be fed XML that was created
by the createXml() method.
*/
static ValueTree fromXml (const String& xmlText);
/** This returns a string containing an XML representation of the tree.
This is quite handy for debugging purposes, as it provides a quick way to view a tree.
@see createXml()