#ifndef XRPL_BASICS_FILEUTILITIES_H_INCLUDED #define XRPL_BASICS_FILEUTILITIES_H_INCLUDED #include #include #include namespace ripple { std::string getFileContents( boost::system::error_code& ec, boost::filesystem::path const& sourcePath, std::optional maxSize = std::nullopt); void writeFileContents( boost::system::error_code& ec, boost::filesystem::path const& destPath, std::string const& contents); } // namespace ripple #endif