When creating a QDomDocument
Qt Code:
  1. QDomDocument doc( "Report" );
To copy to clipboard, switch view to plain text mode 

How do I tell the XML file the location of the DTD to use. For example:

<!DOCTYPE Report SYSTEM "report.dtd">
how do I put the SYSTEM "report.dtd" into the DTD description. I have looked through the API and there is nothing about adding an reference to a DTD location.

Thanks!