1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-02-04 19:04:08 +00:00
Aquaria/BBGE/ReadXML.h

11 lines
286 B
C
Raw Normal View History

#ifndef BBGE_READ_XML_H
#define BBGE_READ_XML_H
#include "tinyxml2.h"
#include <string>
tinyxml2::XMLDocument *readXML(const std::string& fn, tinyxml2::XMLError *perr = 0, bool keepEmpty = false);
tinyxml2::XMLError readXML(const std::string& fn, tinyxml2::XMLDocument& doc);
#endif