U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame^] | 1 | #include "tinyxml2.h" |
2 | |||||
3 | #include <stdio.h> | ||||
4 | #include <stdlib.h> | ||||
5 | |||||
6 | using namespace tinyxml2; | ||||
7 | |||||
8 | int main( int argc, const char* argv ) | ||||
9 | { | ||||
10 | static const char* test = "<hello></hello>"; | ||||
11 | |||||
12 | XMLDocument doc; | ||||
13 | doc.Parse( test ); | ||||
14 | doc.Print( stdout ); | ||||
15 | |||||
16 | return 0; | ||||
17 | } |