views:

173

answers:

1

How can I use XML as a simple data storage in Borland C++ Builder 6?

Is there an internal class, which I could use?

Thank's for help

+3  A: 

I'm not sure whether the TXmlDocument is implemented in C++Builder 6, but a more simple solution would be to use the TinyXML [1] library, which is indeed simple, and easy to use. I have used it with different versions of C++ Builder and it works like a charm.

[1] http://www.grinninglizard.com/tinyxml/

TommyA
TXMLDocument is exactly what I was looking for.. Couldn't remember the exact class name :-D thanks
Juraj Blahunka