blob: 0561de090762b58471a593678e801b3718c1cbd0 [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