initial checkin

This commit is contained in:
U-Lama\Lee
2011-12-28 14:36:55 -08:00
commit e13c3e653d
7 changed files with 185 additions and 0 deletions

33
tinyxml2.h Normal file
View File

@@ -0,0 +1,33 @@
#ifndef TINYXML2_INCLUDED
#define TINYXML2_INCLUDED
namespace tinyxml2
{
class Element
{
public:
Element
};
class XMLDocument
{
public:
XMLDocument();
bool Parse( const char* );
private:
XMLDocument( const XMLDocument& ); // not implemented
};
}; // tinyxml2
#endif // TINYXML2_INCLUDED