initial checkin
This commit is contained in:
17
xmltest.cpp
Normal file
17
xmltest.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user