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 | |||||
17 | bool HashFileHandler::write(std::uint32_t offset, | ||||
18 | const std::vector<std::uint8_t>& data) | ||||
19 | { | ||||
20 | return false; | ||||
21 | } | ||||
22 | |||||
23 | } // namespace blobs |