1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-29 15:13:01 +04:00

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
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