XMLFile.pkg 263 B

123456789
  1. $#include "XMLFile.h"
  2. /// XML document resource.
  3. class XMLFile : public Resource
  4. {
  5. public:
  6. /// Return the root element, with optionally specified name. Return null element if not found.
  7. XMLElement GetRoot(const String& name = String::EMPTY);
  8. };