1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-29 07:03:00 +04:00

initial checkin

This commit is contained in:
U-Lama\Lee
2011-12-28 14:36:55 -08:00
commit e13c3e653d
7 changed files with 185 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include "tinyxml2.h"
#include <stdio.h>
#include <stdlib.h>
using namespace tinyxml2;
int main( int argc, const char* argv )
{
static const char* test = "<hello></hello>";
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
return 0;
}