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