blob: 8cb20e08e3b29e596699cc439604e02fc6989262 [file] [log] [blame]
Patrick Venturea78e39f2018-11-06 18:37:06 -08001#include "static_handler.hpp"
2
Patrick Venture400c6362018-11-06 20:06:11 -08003#include <cstdint>
Patrick Venturea78e39f2018-11-06 18:37:06 -08004#include <memory>
5#include <string>
Patrick Venture400c6362018-11-06 20:06:11 -08006#include <vector>
Patrick Venturea78e39f2018-11-06 18:37:06 -08007
8namespace blobs
9{
10
11bool StaticLayoutHandler::open(const std::string& path)
12{
13 this->path = path;
14 return false;
15}
16
Patrick Venture400c6362018-11-06 20:06:11 -080017bool StaticLayoutHandler::write(std::uint32_t offset,
18 const std::vector<std::uint8_t>& data)
19{
20 return false;
21}
22
Patrick Venturea78e39f2018-11-06 18:37:06 -080023} // namespace blobs