Patrick Venture | e2e5611 | 2018-11-08 09:42:45 -0800 | [diff] [blame] | 1 | #include "hash_handler.hpp" |
| 2 | |
| 3 | #include <cstdint> |
| 4 | #include <memory> |
| 5 | #include <string> |
| 6 | #include <vector> |
| 7 | |
| 8 | namespace blobs |
| 9 | { |
| 10 | |
| 11 | bool HashFileHandler::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 HashFileHandler::close() |
| 18 | { |
| 19 | return; |
| 20 | } |
| 21 | |
Patrick Venture | e2e5611 | 2018-11-08 09:42:45 -0800 | [diff] [blame] | 22 | bool HashFileHandler::write(std::uint32_t offset, |
| 23 | const std::vector<std::uint8_t>& data) |
| 24 | { |
| 25 | return false; |
| 26 | } |
| 27 | |
| 28 | } // namespace blobs |