
Hi,
Dear list members,
I guess it's one of the hardest search terms around but I would like to know if there is any editable XML serialization provided by Boost or other C++ libraries. And I don't mean the kind of thing that requires you to go jumping around through trees, with iterators etc. I don't want to see any iterator!
lit("</data1>") >> lit("<data2>") >> int_ >> lit("</data2>") >>
I thought of something like this too. Actually, a specific XML-Format
could easily be implemented using boost.spirit:
qi::rule
It would be so great if there is something like this in which the XML files can actually be edited! I am almost sure that there should be something like that, but I can't find it.
You can edit the file by using a karma-rule that works exactly like the qi::rule, but is used for output instead. Spirit is very fast, probably faster than editing the XML and saving it using another xml-library. Regards, michi7x7