Hello,
I have an XML file which im trying to read with C++ in order to make use of the data stored within the xml file to draw textures.
The XML file looks like this:
<?xml version="1.0" ?>
- <test>
<a>5</a>
<b>3</b>
<c>1</c>
<d>0</d>
<name>fred</name>
</test>
Can anyone tell me how to load the xml file in a way that allows me to use
and get the value from the file printed?