Reading XML Config files with C++ and TinyXML in Linux

I’m currently working on a C++ FOSS project that requires to read configuration settings from file. In .NET this is pretty straightforward to do via ConfigurationManager class, so I had to write my own using TinyXML Source code as shown below: Config.xml Setting.h ConfigReader.h ConfigReader.cpp The elements in XML file are treated as models that […]

Continue Reading