Files
tinyxml2/tinyxml2.h
2011-12-28 14:36:55 -08:00

33 lines
336 B
C++

#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