blob: d1cca080bee30eb9edeb1d625d157ed6a9d24dc1 [file] [log] [blame]
#pragma once
#include "image_handler.hpp"
#include <memory>
#include <string>
namespace blobs
{
class StaticLayoutHandler : public ImageHandlerInterface
{
public:
/**
* Create a StaticLayoutHandler.
*/
StaticLayoutHandler() = default;
bool open(const std::string& path) override;
private:
std::string path;
};
} // namespace blobs