Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame^] | 1 | #include "static_handler.hpp" |
2 | |||||
3 | #include <memory> | ||||
4 | #include <string> | ||||
5 | |||||
6 | namespace blobs | ||||
7 | { | ||||
8 | |||||
9 | bool StaticLayoutHandler::open(const std::string& path) | ||||
10 | { | ||||
11 | this->path = path; | ||||
12 | return false; | ||||
13 | } | ||||
14 | |||||
15 | } // namespace blobs |