#pragma once

#include <filesystem>

class Sensor
{
public:
    Sensor(const std::filesystem::path& temperature_file);
    double get_temperature();

private:
    std::filesystem::path _temperature_file;
};
