Reading Configuration xml files in C++ -
how can following configuration file read in c++. there support in stl. can't afford 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 not using managed c++.
stl has no support parsing xml. if you're determined not use third party library other option write parser hand, seems pretty bad idea. why can't afford use third party libraries?
Comments
Post a Comment