blob: c4fa602875fdd8d8b8774415b76b1c5335ed49f2 [file] [log] [blame]
#include "static_handler.hpp"
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
namespace blobs
{
bool StaticLayoutHandler::open(const std::string& path)
{
this->path = path;
return false;
}
void StaticLayoutHandler::close()
{
return;
}
bool StaticLayoutHandler::write(std::uint32_t offset,
const std::vector<std::uint8_t>& data)
{
return false;
}
} // namespace blobs