blob: c3b5323c1693d1061f0837fda902f50aa67b8f4c [file] [log] [blame]
/* Interface that implements an exception throwing write method. */
#pragma once
#include "interfaces.hpp"
namespace pid_control
{
class WriteOnly : public ReadInterface
{
public:
WriteOnly() : ReadInterface()
{}
ReadReturn read(void) override;
};
} // namespace pid_control