draconisplusplus/include/rfl/io/save_string.hpp

29 lines
606 B
C++
Raw Normal View History

2024-05-31 22:59:00 -04:00
#ifndef RFL_IO_SAVE_STRING_HPP_
#define RFL_IO_SAVE_STRING_HPP_
#include <fstream>
#include <iostream>
#include <string>
#include "../Result.hpp"
namespace rfl {
2024-06-08 14:10:59 -04:00
namespace io {
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
template <class T, class WriteFunction>
2024-06-16 00:13:15 -04:00
Result<Nothing>
save_string(const std::string& _fname, const T& _obj, const WriteFunction& _write) {
2024-06-08 14:10:59 -04:00
try {
std::ofstream outfile;
outfile.open(_fname);
_write(_obj, outfile);
outfile.close();
} catch (std::exception& e) { return Error(e.what()); }
return Nothing {};
}
2024-05-31 22:59:00 -04:00
2024-06-08 14:10:59 -04:00
} // namespace io
} // namespace rfl
2024-05-31 22:59:00 -04:00
#endif