blob: c4fa602875fdd8d8b8774415b76b1c5335ed49f2 [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 Venture68bb1432018-11-09 20:08:48 -080017void StaticLayoutHandler::close()
18{
19 return;
20}
21
Patrick Venture400c6362018-11-06 20:06:11 -080022bool StaticLayoutHandler::write(std::uint32_t offset,
23 const std::vector<std::uint8_t>& data)
24{
25 return false;
26}
27
Patrick Venturea78e39f2018-11-06 18:37:06 -080028} // namespace blobs