How can the following configuration file be read in C++. Is there any support in STL. I can't afford to use other 3rd party libraries.
<?xml version="1.0" encoding="utf-8"?>
<appSettings>
<add key="FileType" value="doc"/>
<add key="FileLength" value="102234"/>
</appSettings>
I am not using managed C++.