blob: c8ef22788912f257ff8ebe0386b1ec2c098139fb [file] [log] [blame]
U-Lama\Leee13c3e62011-12-28 14:36:55 -08001#include "tinyxml2.h"
2
3#include <stdio.h>
4#include <stdlib.h>
5
6using namespace tinyxml2;
7
8int 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}