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

Remove some outdated documentation

This commit is contained in:
Tom Poole 2021-08-18 09:51:34 +01:00
parent b13af2df95
commit a6fced64df

View file

@ -134,14 +134,12 @@ public:
//==============================================================================
/** A handy static method that parses a file.
This is a shortcut for creating an XmlDocument object and calling getDocumentElement() on it.
An even better shortcut is the juce::parseXML() function, which returns a std::unique_ptr<XmlElement>!
@returns a new XmlElement, or nullptr if there was an error.
*/
static std::unique_ptr<XmlElement> parse (const File& file);
/** A handy static method that parses some XML data.
This is a shortcut for creating an XmlDocument object and calling getDocumentElement() on it.
An even better shortcut is the juce::parseXML() function, which returns a std::unique_ptr<XmlElement>!
@returns a new XmlElement, or nullptr if there was an error.
*/
static std::unique_ptr<XmlElement> parse (const String& xmlData);