diff --git a/DesignEvaluator/src/main.cpp b/DesignEvaluator/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4db511bf1432ddb0769de532df2f88c700b2cca2 --- /dev/null +++ b/DesignEvaluator/src/main.cpp @@ -0,0 +1,22 @@ +#include <iostream> +#include <boost/property_tree/xml_parser.hpp> +#include <boost/property_tree/ptree.hpp> + +int main () { + + boost::property_tree::ptree tree1, tree2; + try + { + boost::property_tree::read_xml("oldFormat-CSR.xml", tree1); + } + catch(const std::exception& e) + { + std::cerr << "Error parsing XML: " << e.what() << std::endl; + return 1; + } + + + std::cout << "Hello World!" << std::endl; + + return 0; +} \ No newline at end of file