UTILLib 2.0
Common C++ library with utilities.
|
The xml namespace is used for XML related classes and functions. More...
Classes | |
class | IXmlFile |
Interface class that defines an XML parser. More... | |
class | IXmlNode |
Interface class against a XML tag (node) in a XML file. More... |
Functions | |
std::unique_ptr< IXmlFile > | CreateXmlFile (const std::string &type="Expat") |
Creates an XML object that either parse or write. |
The xml namespace is used for all XML and Expat related classes and functions.
|
nodiscard |
Creates an XML object that either parse a file or string or saves the object to an XML file.
type | String that creates an implementation of an XML object. By default is the Expat parser used. Choose 'Expat' or 'FileWriter'. The latter only creates an XML file. |