xref: /openbmc/phosphor-pid-control/notimpl/writeonly.hpp (revision a83a3ecc8c5be5f1b38253568ec8952f6fc9682f)
1 /* Interface that implements an exception throwing write method. */
2 #pragma once
3 
4 #include "interfaces.hpp"
5 
6 class WriteOnly : public ReadInterface
7 {
8   public:
9     WriteOnly() : ReadInterface()
10     {}
11 
12     ReadReturn read(void) override;
13 };
14