xml one record per line in c++

CRAZYxGAMER

New Member
I am writing a large xml file in C++. What i need is the capability to construct dom trees of records in chunks and flush the chunks to disk. So for example, \[code\]-----------chunk create-----<record>data<record><record>data<record><record>data<record><record>data<record>-----------chunk flush--------\[/code\]Also, a single line should contain one full record as shown above. what i dont want is printing in format shown below\[code\]<record> data</record>\[/code\]Which library would allow both the above functionality?
 
Back
Top