draconisplusplus/include/rfl/xml/save.hpp

30 lines
697 B
C++
Raw Normal View History

2024-06-05 19:04:53 -04:00
#ifndef RFL_XML_SAVE_HPP_
#define RFL_XML_SAVE_HPP_
#include <fstream>
#include <iostream>
#include <string>
#include "../Result.hpp"
#include "../internal/StringLiteral.hpp"
#include "../io/save_string.hpp"
#include "write.hpp"
namespace rfl {
2024-06-08 14:10:59 -04:00
namespace xml {
2024-06-05 19:04:53 -04:00
2024-06-08 15:53:06 -04:00
template <
internal::StringLiteral _root = internal::StringLiteral(""),
class... Ps>
2024-06-08 14:10:59 -04:00
Result<Nothing> save(const std::string& _fname, const auto& _obj) {
const auto write_func = [](const auto& _obj, auto& _stream) -> auto& {
return write<_root, Ps...>(_obj, _stream);
};
return rfl::io::save_string(_fname, _obj, write_func);
}
2024-06-05 19:04:53 -04:00
2024-06-08 14:10:59 -04:00
} // namespace xml
} // namespace rfl
2024-06-05 19:04:53 -04:00
#endif