Files
GDevelop/Core/GDCore/Tools/XmlLoader.h
Florian Rival a8559bfbbc Add clang-format to format (C++) source files automatically (#491)
* Update all CMakeLists of extensions to use clang-format
* Run clang-format on all Extensions
* Update GDCore CMakeLists.txt to add clang-format
* Run clang-format on GDCore files
* Update GDJS and GDCpp CMakeLists.txt to add clang-format
* Run clang-format on GDCpp and GDJS files
2018-05-09 15:57:38 -07:00

18 lines
396 B
C++

#ifndef GDCORE_XMLLOADER_H
#define GDCORE_XMLLOADER_H
#include "GDCore/String.h"
#include "GDCore/TinyXml/tinyxml.h"
namespace gd {
bool GD_CORE_API LoadXmlFromFile(TiXmlDocument& doc,
const gd::String& filepath);
bool GD_CORE_API SaveXmlToFile(const TiXmlDocument& doc,
const gd::String& filepath);
} // namespace gd
#endif