blob: 349caac4d11cb662e5b1c1c880716d6c3950236e [file] [log] [blame]
#pragma once
#include "interfaces.hpp"
#include "util.hpp"
#include <string>
/*
* A ReadInterface that is expecting a path that's sysfs, but really could be
* any filesystem path.
*/
class SysFsRead : public ReadInterface
{
public:
SysFsRead(const std::string& path) : ReadInterface(), _path(FixupPath(path))
{}
ReadReturn read(void) override;
private:
const std::string _path;
};