Echo Writes Code

read.hpp

1
2
3
4
5
6
7
8
9
10
11
#ifndef CRUCIBLE_BOLT_READ_HPP
#define CRUCIBLE_BOLT_READ_HPP

#include "crucible/bolt/container.hpp"
#include "crucible/bolt/errors.hpp"

namespace crucible::bolt::read {
  auto from_bytes(std::vector<std::byte> const &bytes) -> errors::BoltResult<container::Container>;
}

#endif // CRUCIBLE_BOLT_READ_HPP