tengo el sigueinte XML como ejemplo
<?xml version="1.0"?>
<books>
<book category="reference">
<author>Nigel Rees</author>
<title>Sayings of the Century</title>
<price>8.95</price>
</book>
<book category="fiction">
<author>Evelyn Waugh</author>
<title>Sword of Honour</title>
<price>12.99</price>
</book>
<book category="fiction">
<author>Herman Melville</author>
<title>Moby Dick</title>
<price>8.99</price>
</book>
<book category="fiction">
<author>J. R. R. Tolkien</author>
<title>The Lord of the Rings</title>
<price>22.99</price>
</book>
</books>
El tipo de archivo externo que necesito cargar al XML es un archivo Binario, pero para comenzar estaria bien con un archivo ASCCI. El lenguaje que utilizo es C++.
-la Duda es como poder cargar la informacion contenida entre <book>INFORMACION A CARGAR</book> desde un archivo externo?
- como es la referencia a el archivo que contiene la informacion
aser cargada dentro de <book></boo