mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 17:53:47 +00:00
11 lines
286 B
C
11 lines
286 B
C
|
#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
|