mirror of
https://github.com/leethomason/tinyxml2.git
synced 2026-07-29 15:13:01 +04:00
basic structure in place.
This commit is contained in:
+14
-4
@@ -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