blob: 4c1baecef92a5b7cf45334557aeffd85dbfa00f3 [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:
explicit SysFsRead(const std::string& path) :
ReadInterface(), _path(FixupPath(path))
{}
ReadReturn read(void) override;
private:
const std::string _path;
};