vote up 0 vote down star

I'm trying to connect the output of popen, a file pointer, to the input of TinyXML.

According to the main page, the best way to do it is using the parse method:

C style input:

    * based on FILE*
    * the Parse() and LoadFile() methods

I believe I need to use the TIXML_USE_STL to get to this. How do I go about finding examples and import it?

A reply since deleted pointed me in the right direction on the docs

http://www.grinninglizard.com/tinyxmldocs/index.html

Thanks.

Now, i just need to figure out how to link and import it.

flag

76% accept rate

1 Answer

vote up 2 vote down check

I'm not hugely familiar with TinyXML, but does LoadFile() not work in its overloaded version which takes a FILE *?

http://www.grinninglizard.com/tinyxmldocs/classTiXmlDocument.html#a12

EDIT: Ah, the problem is that TinyXML doesn't support reading from a stream (see the link above). Your only choice then is to read the stream manually into a buffer and pass it to TinyXML's Parse().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.