basic structure in place.
diff --git a/xmltest.cpp b/xmltest.cpp
index c8ef227..8df6ce0 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -7,11 +7,21 @@
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;
}
\ No newline at end of file