tinyxml2.h 336 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef TINYXML2_INCLUDED
  2. #define TINYXML2_INCLUDED
  3. namespace tinyxml2
  4. {
  5. class Element
  6. {
  7. public:
  8. Element
  9. };
  10. class XMLDocument
  11. {
  12. public:
  13. XMLDocument();
  14. bool Parse( const char* );
  15. private:
  16. XMLDocument( const XMLDocument& ); // not implemented
  17. };
  18. }; // tinyxml2
  19. #endif // TINYXML2_INCLUDED