loadXML()
Input / FilesDescription
Loads an XML file and returns an XML object.
Syntax
XML loadXML(std::string path)
Parameters
| Name | Type | Description |
|---|---|---|
| path | std::string | path to the XML file |
Returns
XMLRelated
Under the Hood
From Processing.h:
static XML loadXML(const std::string& path);
Under the Hood
From Processing.cpp:
XML PApplet::loadXML(const std::string& path){ return parseXML(readFileString(path)); }