mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00

* 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
18 lines
396 B
C++
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
|