2024-06-05 19:04:53 -04:00
|
|
|
#ifndef RFL_CBOR_LOAD_HPP_
|
|
|
|
#define RFL_CBOR_LOAD_HPP_
|
|
|
|
|
|
|
|
#include "../Processors.hpp"
|
|
|
|
#include "../Result.hpp"
|
|
|
|
#include "../io/load_bytes.hpp"
|
|
|
|
#include "read.hpp"
|
|
|
|
|
|
|
|
namespace rfl {
|
2024-06-08 14:10:59 -04:00
|
|
|
namespace cbor {
|
2024-06-05 19:04:53 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <class T, class... Ps>
|
|
|
|
Result<T> load(const std::string& _fname) {
|
|
|
|
const auto read_bytes = [](const auto& _bytes) {
|
|
|
|
return read<T, Ps...>(_bytes);
|
|
|
|
};
|
|
|
|
return rfl::io::load_bytes(_fname).and_then(read_bytes);
|
|
|
|
}
|
2024-06-05 19:04:53 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace cbor
|
|
|
|
} // namespace rfl
|
2024-06-05 19:04:53 -04:00
|
|
|
|
|
|
|
#endif
|