| Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame^] | 1 | #pragma once |
| 2 | |||||
| 3 | #include "image_handler.hpp" | ||||
| 4 | |||||
| 5 | #include <memory> | ||||
| 6 | #include <string> | ||||
| 7 | |||||
| 8 | namespace blobs | ||||
| 9 | { | ||||
| 10 | |||||
| 11 | class StaticLayoutHandler : public ImageHandlerInterface | ||||
| 12 | { | ||||
| 13 | public: | ||||
| 14 | /** | ||||
| 15 | * Create a StaticLayoutHandler. | ||||
| 16 | */ | ||||
| 17 | StaticLayoutHandler() = default; | ||||
| 18 | |||||
| 19 | bool open(const std::string& path) override; | ||||
| 20 | |||||
| 21 | private: | ||||
| 22 | std::string path; | ||||
| 23 | }; | ||||
| 24 | |||||
| 25 | } // namespace blobs | ||||