basic structure in place.
This commit is contained in:
18
xmltest.cpp
18
xmltest.cpp
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user