Tagged Questions
The tinyxml++ tag has no wiki summary.
2
votes
1answer
1k views
Can TinyXml load Xml from string instead of file?
I'm using TinyXml library for my application but TiXmlDocument object just only can load Xml file. How can it load Xml from string. Could you tell me the way to do this. Thank you very much
Tu.
2
votes
3answers
580 views
Odd behavior from TinyXML++
Hoping some of you TinyXML++ people can help me out. Really, since you recomended to me before I think you owe me ;)
I have the following code:
//ticpp::Iterator< ticpp::Element > child( ...
0
votes
1answer
159 views
tinyXml how to create xml
HI,
I have the following:
class pers
{
public:
pers();
std::string name;
long favourite_number;
time_t curent_time;
}
I would like to create an xml using tinyXml. Here ...
0
votes
1answer
285 views
Create xml using tinyxml
I have a problem. I need to create a following xml:
<?xml version="1.0" encoding="utf-8"?>
<MyApp value="5" name="me">
</MyApp>
Using c++ code I did the following:
#include ...
0
votes
1answer
103 views
Linking problems with TinyXml++ and Visual C++ Express Edition 2008
I'm trying to use TinyXml++ in my project, and I have tested it successfully in a small program before. I recently decided to use it to read a configuration file in my current project and though the ...
0
votes
2answers
486 views
TinyXML Iterating over a Subtree
Does anyone have code to iterate through the nodes of a subtree in TinyXML? IE: Given a parent, iterate through all its children and all of its children's children?