Hi all.

I have an application and i want to save and load some data in it using xml (as you do). I could do that quite easily but i want to make sure the data is valid according to a DTD or something. That is, i want the xml document structure to be the same when writing the data from my application and when reading it in. Also, it will mean i don't have to do as much checking to make sure the structure is correct.

So my question is how to do this in Qt. I already know how to read an xml file into a QDomDocument, i just want to know about DTD or schema validation or whatever it is.

thanks