I generated an "my_test.xml" file by making use of tinyxml, till now all has went fine but now i want to validate this against "my_test.dtd" DTD and want to add following line in the starting of "my_test.xml":
<!DOCTYPE people SYSTEM "my_test.dtd">
Unfortunately, as per http://www.grinninglizard.com/tinyxmldocs/, it looks like TinyXML doesn't support parsing DOCTYPE tags such as the one in the above sample. What is the recommended or best way to achieve this? I have already spent lot of time in parsing "my_test.xml" and can not even think to go with other parser.So,please suggest me someway by which i can add DOCTYPE tags in order to validate "my_test.xml" against "my_test.dtd".