mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-28 09:42:32 +00:00
23 lines
453 B
C++
23 lines
453 B
C++
#pragma once
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include <boost/system/error_code.hpp>
|
|
|
|
#include <optional>
|
|
|
|
namespace xrpl {
|
|
|
|
std::string
|
|
getFileContents(
|
|
boost::system::error_code& ec,
|
|
boost::filesystem::path const& sourcePath,
|
|
std::optional<std::size_t> maxSize = std::nullopt);
|
|
|
|
void
|
|
writeFileContents(
|
|
boost::system::error_code& ec,
|
|
boost::filesystem::path const& destPath,
|
|
std::string const& contents);
|
|
|
|
} // namespace xrpl
|