Top "Boost-propertytree" questions

The Boost PropertyTree library provides a data structure that stores an arbitrarily deeply nested tree of values, indexed at each level by some key.

Parsing JSON with boost property tree

I'm building an application that gets movie information from themoviedb.com. The information is provided in a JSON file. I'm …

c++ json boost boost-propertytree boost-foreach
writing more complex than trivial xml with boost property tree

UPD I've found answer to "formatting" issue here, so I remove this part of the question, please read updated question: …

c++ boost boost-propertytree
How do I merge/update a boost::property_tree::ptree?

I have read through the documentation for boost::property_tree and have not found a way to update or merge …

c++ boost boost-propertytree
How to output boost property tree as JSON encoded string?

Sometimes it is very useful to create JSON encoded strings for representing and exchanging data. What is be best way …

json boost boost-propertytree
Updating XML file using Boost property_tree

I have the following XML file: <xml version="1.0" encoding="utf-8"?> <Data> <Parameter1>1</Parameter1&…

c++ xml boost boost-propertytree
Boost Property Tree and Xml parsing Problems

I'm using boost::property_tree. The documentation is very vague and overall unhelpful for the most part. Looking at the …

c++ boost boost-propertytree
Boost c++ property - if key does not exist then set to false

I am new to json parsing with boost using the property tree. If I have this hash: foo = {'test1',…

c++ boost boost-propertytree
How do we get objects in boost property tree

I need to understand and modify a sample code. I am stuck at some point and couldn't find any solution. …

c++ json boost boost-propertytree boost-foreach
iterate through boost property tree

I'm iterating over an XML document using boost property tree and storing the results in a struct. The issue I …

xml boost boost-propertytree
Adding unnamed nodes to boost::property_tree::ptree

I need to add unnamed nodes to a boost::property_tree::ptree just like it's JSON parser does for arrays. …

c++ boost boost-propertytree