basic structure in place.

This commit is contained in:
U-Lama\Lee
2011-12-31 14:58:18 -08:00
parent 560bd47842
commit 4cee61104d
4 changed files with 106 additions and 12 deletions

View File

@@ -7,11 +7,21 @@ using namespace tinyxml2;
int main( int argc, const char* argv )
{
static const char* test = "<hello></hello>";
{
static const char* test = "<!--hello world-->";
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
}
/*
{
static const char* test = "<hello></hello>";
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
}
*/
return 0;
}