Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame] | 1 | #include "static_handler.hpp" |
| 2 | |
Patrick Venture | 400c636 | 2018-11-06 20:06:11 -0800 | [diff] [blame] | 3 | #include <cstdint> |
Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame] | 4 | #include <memory> |
| 5 | #include <string> |
Patrick Venture | 400c636 | 2018-11-06 20:06:11 -0800 | [diff] [blame] | 6 | #include <vector> |
Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame] | 7 | |
| 8 | namespace blobs |
| 9 | { |
| 10 | |
| 11 | bool StaticLayoutHandler::open(const std::string& path) |
| 12 | { |
| 13 | this->path = path; |
| 14 | return false; |
| 15 | } |
| 16 | |
Patrick Venture | 68bb143 | 2018-11-09 20:08:48 -0800 | [diff] [blame] | 17 | void StaticLayoutHandler::close() |
| 18 | { |
| 19 | return; |
| 20 | } |
| 21 | |
Patrick Venture | 400c636 | 2018-11-06 20:06:11 -0800 | [diff] [blame] | 22 | bool StaticLayoutHandler::write(std::uint32_t offset, |
| 23 | const std::vector<std::uint8_t>& data) |
| 24 | { |
| 25 | return false; |
| 26 | } |
| 27 | |
Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame] | 28 | } // namespace blobs |