|
std::unique_ptr< XmlElement > | juce::parseXML (const File &fileToParse) |
| Attempts to parse some XML text, returning a new XmlElement if it was valid. More...
|
|
std::unique_ptr< XmlElement > | juce::parseXML (const String &textToParse) |
| Attempts to parse some XML text, returning a new XmlElement if it was valid. More...
|
|
std::unique_ptr< XmlElement > | juce::parseXMLIfTagMatches (const File &fileToParse, StringRef requiredTag) |
| Does an inexpensive check to see whether the top-level element has the given tag name, and if that's true, does a full parse and returns the result. More...
|
|
std::unique_ptr< XmlElement > | juce::parseXMLIfTagMatches (const String &textToParse, StringRef requiredTag) |
| Does an inexpensive check to see whether the top-level element has the given tag name, and if that's true, does a full parse and returns the result. More...
|
|