tinyxml2
tinyxml2 copied to clipboard
About namespace
Maybe telling about the namespace tinyxml2 in README will be more beginner-friendly. When I first used tinyxml2, I typed
XMLDocument doc;
and it could not be compiled. It took me a long time to figure it out. I should
using namespace tinyxml2;
or
tinyxml2::XMLDocument doc;
Agree with this idea.
And we may also add a complete demo such as example/tinyxml2_demo.cpp to make the user more clear about how to use