element and attribute code compiling

This commit is contained in:
Lee Thomason
2012-01-18 17:43:40 -08:00
parent fde6a756d1
commit 8a5dfee8ce
4 changed files with 366 additions and 125 deletions

View File

@@ -15,10 +15,20 @@ int main( int argc, const char* argv )
doc.Parse( test );
doc.Print( stdout );
}
#endif
{
static const char* test = "<!--hello world\n"
" line 2\r-->";
" line 2\r"
" line 3\r\n"
" line 4\n\r"
" line 5\r-->";
XMLDocument doc;
doc.Parse( test );
doc.Print( stdout );
}
#endif
{
static const char* test = "<element />";
XMLDocument doc;
doc.Parse( test );